C++11 tidying.
[dcpomatic.git] / src / lib / examine_ffmpeg_subtitles_job.h
index 0a0101193c0067b34c9d25af15ae4c990962d37d..c9c0cabf4dbd9c316a90fb1713d4ab12fafaf385 100644 (file)
 
 #include "job.h"
 #include "ffmpeg.h"
-#include <boost/shared_ptr.hpp>
 
 class FFmpegContent;
 
 class ExamineFFmpegSubtitlesJob : public Job, public FFmpeg
 {
 public:
-       ExamineFFmpegSubtitlesJob (boost::shared_ptr<const Film>, boost::shared_ptr<FFmpegContent>);
+       ExamineFFmpegSubtitlesJob (std::shared_ptr<const Film>, std::shared_ptr<FFmpegContent>);
        ~ExamineFFmpegSubtitlesJob ();
 
        std::string name () const;
@@ -35,5 +34,5 @@ public:
        void run ();
 
 private:
-       boost::shared_ptr<FFmpegContent> _content;
+       std::shared_ptr<FFmpegContent> _content;
 };