X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexamine_content_job.h;h=9437942dc0aa659e748c8d507fe2d75e776b40ef;hb=fc1441eeaa3c0805c37809685ea7a3f5ca173666;hp=42496372638878773e61f962524d78848b89057d;hpb=63bce67bd548f4aff98e2a1963e1fd77a6412a15;p=dcpomatic.git diff --git a/src/lib/examine_content_job.h b/src/lib/examine_content_job.h index 424963726..9437942dc 100644 --- a/src/lib/examine_content_job.h +++ b/src/lib/examine_content_job.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Carl Hetherington + Copyright (C) 2012-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,24 +18,27 @@ */ + #include "job.h" -#include + class Content; + class ExamineContentJob : public Job { public: - ExamineContentJob (boost::shared_ptr, boost::shared_ptr); + ExamineContentJob (std::shared_ptr, std::shared_ptr); + ~ExamineContentJob (); std::string name () const; std::string json_name () const; void run (); - boost::shared_ptr content () const { + std::shared_ptr content () const { return _content; } private: - boost::shared_ptr _content; + std::shared_ptr _content; };