diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-04 21:16:53 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-07 22:48:29 +0100 |
| commit | dd9be86db6cde0afa5da0d1d1ac43b42e05dca26 (patch) | |
| tree | e56a3f82fb9e1c8602f265bea0d0688d8a018644 /src/lib/examine_ffmpeg_subtitles_job.h | |
| parent | 0d35820cf50d2789752b8776683b26d04642518d (diff) | |
std::shared_ptr
Diffstat (limited to 'src/lib/examine_ffmpeg_subtitles_job.h')
| -rw-r--r-- | src/lib/examine_ffmpeg_subtitles_job.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/examine_ffmpeg_subtitles_job.h b/src/lib/examine_ffmpeg_subtitles_job.h index 0a0101193..c9c0cabf4 100644 --- a/src/lib/examine_ffmpeg_subtitles_job.h +++ b/src/lib/examine_ffmpeg_subtitles_job.h @@ -20,14 +20,13 @@ #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; }; |
