X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexamine_content_job.h;h=b97e7823d6b99b808e18c0ddd0ab6fbbd4ba5096;hb=ef4b082c5d7452a34ce45f6d3bead46a7e846faf;hp=729c287b58fe66488526f02eeff31708d2f7d307;hpb=71ea64782f215c605877f5c231a2a8b1838fe8bd;p=dcpomatic.git diff --git a/src/lib/examine_content_job.h b/src/lib/examine_content_job.h index 729c287b5..b97e7823d 100644 --- a/src/lib/examine_content_job.h +++ b/src/lib/examine_content_job.h @@ -17,22 +17,23 @@ */ -/** @file src/examine_content_job.h - * @brief A class to obtain the length and MD5 digest of a content file. - */ - #include "job.h" +#include + +class Content; +class Log; -/** @class ExamineContentJob - * @brief A class to obtain the length and MD5 digest of a content file. - */ 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; + std::string json_name () const; void run (); + +private: + boost::shared_ptr _content; };