Fix typo in log message.
[dcpomatic.git] / src / lib / examine_content_job.h
index 0f4da2457c646fff9fb47ee0efb50a74820ed033..601b285844a0466dd66f5e652cb582602028ea8f 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "job.h"
-#include <boost/shared_ptr.hpp>
+
 
 class Content;
 
+
 class ExamineContentJob : public Job
 {
 public:
-       ExamineContentJob (boost::shared_ptr<const Film>, boost::shared_ptr<Content>);
+       ExamineContentJob (std::shared_ptr<const Film>, std::shared_ptr<Content>);
+       ~ExamineContentJob ();
+
+       std::string name () const override;
+       std::string json_name () const override;
+       void run () override;
 
-       std::string name () const;
-       std::string json_name () const;
-       void run ();
+       std::shared_ptr<Content> content () const {
+               return _content;
+       }
 
 private:
-       boost::shared_ptr<Content> _content;
+       std::shared_ptr<Content> _content;
 };