X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexamine_content_job.h;h=00d27a342391f4f9681cb60358898442cc54afc1;hb=2d10f2ed6596cae02a6ed7321c5c79ffef4ef75b;hp=0f4da2457c646fff9fb47ee0efb50a74820ed033;hpb=dc37d4d06b1fde1a61b7d446f51921f19324ef98;p=dcpomatic.git diff --git a/src/lib/examine_content_job.h b/src/lib/examine_content_job.h index 0f4da2457..00d27a342 100644 --- a/src/lib/examine_content_job.h +++ b/src/lib/examine_content_job.h @@ -19,19 +19,23 @@ */ #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 (); + std::shared_ptr content () const { + return _content; + } + private: - boost::shared_ptr _content; + std::shared_ptr _content; };