X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexamine_content_job.h;h=016a56371de1ff8f8641b137484a2712d6d9ad04;hb=59e769023c392c332331567a1aea94660002c463;hp=729c287b58fe66488526f02eeff31708d2f7d307;hpb=039ac5848730d154e0b3f3dd841a55e45ba922d8;p=dcpomatic.git diff --git a/src/lib/examine_content_job.h b/src/lib/examine_content_job.h index 729c287b5..016a56371 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 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; void run (); + +private: + boost::shared_ptr _content; };