More c++ tidying.
[dcpomatic.git] / src / lib / transcode_job.h
index 9dd9e36846abf5036fc894c743eb717585dfece2..88f41d6554cf76fb19b28fb8c6692d42503c4c2b 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2019 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -23,7 +23,6 @@
  */
 
 #include "job.h"
-#include <boost/shared_ptr.hpp>
 
 class Encoder;
 
@@ -33,17 +32,18 @@ class Encoder;
 class TranscodeJob : public Job
 {
 public:
-       explicit TranscodeJob (boost::shared_ptr<const Film> film);
+       explicit TranscodeJob (std::shared_ptr<const Film> film);
+       ~TranscodeJob ();
 
        std::string name () const;
        std::string json_name () const;
        void run ();
        std::string status () const;
 
-       void set_encoder (boost::shared_ptr<Encoder> t);
+       void set_encoder (std::shared_ptr<Encoder> t);
 
 private:
        int remaining_time () const;
 
-       boost::shared_ptr<Encoder> _encoder;
+       std::shared_ptr<Encoder> _encoder;
 };