Avoid unnecessary re-writes of video assets if they are staying the same (#1638).
[dcpomatic.git] / src / lib / check_content_change_job.h
index 4ae3ed1e9b53f3f286f352c566aab4e726c9b18a..355dedf83a9d3ad2326b357918da855c39880190 100644 (file)
 class CheckContentChangeJob : public Job
 {
 public:
-       CheckContentChangeJob (boost::shared_ptr<const Film>);
+       CheckContentChangeJob (boost::shared_ptr<const Film>, boost::shared_ptr<Job> following = boost::shared_ptr<Job>(), bool gui = true);
 
        std::string name () const;
        std::string json_name () const;
        void run ();
+
+private:
+       boost::shared_ptr<Job> _following;
+       bool _gui;
 };