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_content_job.h | |
| parent | 0d35820cf50d2789752b8776683b26d04642518d (diff) | |
std::shared_ptr
Diffstat (limited to 'src/lib/examine_content_job.h')
| -rw-r--r-- | src/lib/examine_content_job.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/examine_content_job.h b/src/lib/examine_content_job.h index 0105035ff..00d27a342 100644 --- a/src/lib/examine_content_job.h +++ b/src/lib/examine_content_job.h @@ -19,24 +19,23 @@ */ #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; }; |
