X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexamine_content_job.h;h=b6903b86bebf0ed9e80970a7382c0f07628301cc;hb=4e2e24a44857dd6dbd777cd28d851fd792ca3124;hp=2004aca8318225e2b2f33da0c6b70f1c959b0c59;hpb=288e7e64e9be84b8dbe11f5acb490e64a29d9378;p=dcpomatic.git diff --git a/src/lib/examine_content_job.h b/src/lib/examine_content_job.h index 2004aca83..b6903b86b 100644 --- a/src/lib/examine_content_job.h +++ b/src/lib/examine_content_job.h @@ -17,22 +17,22 @@ */ -/** @file src/examine_content_job.h - * @brief A class to run through content at high speed to find its length. - */ - +#include #include "job.h" -/** @class ExamineContentJob - * @brief A class to run through content at high speed to find its length. - */ +class Content; +class Log; + class ExamineContentJob : public Job { public: - ExamineContentJob (boost::shared_ptr, boost::shared_ptr req); + ExamineContentJob (boost::shared_ptr, boost::shared_ptr); ~ExamineContentJob (); std::string name () const; void run (); + +private: + boost::shared_ptr _content; };