X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexamine_ffmpeg_subtitles_job.h;h=1a065df57b485c95264ddba4a8a065d49b86791d;hb=4401895dfbb25834d4385621824e72ae19c8962c;hp=0a0101193c0067b34c9d25af15ae4c990962d37d;hpb=caf67bef2611a911307267b20dbf3be89ffff71f;p=dcpomatic.git diff --git a/src/lib/examine_ffmpeg_subtitles_job.h b/src/lib/examine_ffmpeg_subtitles_job.h index 0a0101193..1a065df57 100644 --- a/src/lib/examine_ffmpeg_subtitles_job.h +++ b/src/lib/examine_ffmpeg_subtitles_job.h @@ -20,20 +20,19 @@ #include "job.h" #include "ffmpeg.h" -#include class FFmpegContent; class ExamineFFmpegSubtitlesJob : public Job, public FFmpeg { public: - ExamineFFmpegSubtitlesJob (boost::shared_ptr, boost::shared_ptr); + ExamineFFmpegSubtitlesJob (std::shared_ptr, std::shared_ptr); ~ExamineFFmpegSubtitlesJob (); - std::string name () const; - std::string json_name () const; - void run (); + std::string name () const override; + std::string json_name () const override; + void run () override; private: - boost::shared_ptr _content; + std::shared_ptr _content; };