Add another believed-correct subtitle timing fix.
[dcpomatic.git] / src / lib / examine_content_job.h
index 42496372638878773e61f962524d78848b89057d..9437942dc0aa659e748c8d507fe2d75e776b40ef 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;
        std::string json_name () const;
        void run ();
 
-       boost::shared_ptr<Content> content () const {
+       std::shared_ptr<Content> content () const {
                return _content;
        }
 
 private:
-       boost::shared_ptr<Content> _content;
+       std::shared_ptr<Content> _content;
 };