Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / examine_content_job.h
index dc0d53ffff2e03650c611b067d18d61abe5a18d0..4b813bca4bbab1ade3888e19507d8ba269725015 100644 (file)
 
 */
 
-#include <boost/shared_ptr.hpp>
 #include "job.h"
+#include <boost/shared_ptr.hpp>
 
 class Content;
-class Log;
 
 class ExamineContentJob : public Job
 {
 public:
-       ExamineContentJob (boost::shared_ptr<Film>, boost::shared_ptr<Content>, bool);
+       ExamineContentJob (boost::shared_ptr<const Film>, boost::shared_ptr<Content>);
        ~ExamineContentJob ();
 
        std::string name () const;
+       std::string json_name () const;
        void run ();
 
 private:
        boost::shared_ptr<Content> _content;
-       bool _quick;
 };