Add some missing override labels.
[dcpomatic.git] / src / lib / check_content_change_job.h
index 5d0af688125ca9d7ab439d3cf8177bf07f0ff3ca..a374e2a6fb373783e286afd41ff7b29e3092872d 100644 (file)
 class CheckContentChangeJob : public Job
 {
 public:
-       CheckContentChangeJob (boost::shared_ptr<const Film>, boost::shared_ptr<Job> following = boost::shared_ptr<Job>(), bool gui = false);
+       CheckContentChangeJob (std::shared_ptr<const Film>);
+       ~CheckContentChangeJob ();
 
-       std::string name () const;
-       std::string json_name () const;
-       void run ();
-
-private:
-       boost::shared_ptr<Job> _following;
-       bool _gui;
+       std::string name () const override;
+       std::string json_name () const override;
+       void run () override;
 };