Various libdcp API changes.
[dcpomatic.git] / src / lib / examine_content_job.h
index c8037224faa708737e6739d5c29bc544ee74ad0f..e59dba0b8fa2796b2f7ae73d94bc6649abf5b90c 100644 (file)
@@ -17,8 +17,8 @@
 
 */
 
-#include <boost/shared_ptr.hpp>
 #include "job.h"
+#include <boost/shared_ptr.hpp>
 
 class Content;
 class Log;
@@ -26,14 +26,14 @@ class Log;
 class ExamineContentJob : public Job
 {
 public:
-       ExamineContentJob (boost::shared_ptr<const Film>, boost::shared_ptr<Content>);
+       ExamineContentJob (boost::shared_ptr<const Film>, boost::shared_ptr<Content>, bool calculate_digest);
        ~ExamineContentJob ();
 
        std::string name () const;
-       std::string json_name () const;
        void run ();
 
 private:
        boost::shared_ptr<Content> _content;
+       bool _calculate_digest;
 };