diff options
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; }; |
