X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexamine_content_job.h;h=4b813bca4bbab1ade3888e19507d8ba269725015;hb=511f4bbb6dd088cc32163edfe5004761a33a8311;hp=8ee4f0d608de5e8b591e68f23dd2634929065dbe;hpb=38ab054c2ec22a853ee6abbe3f3683d153e9bb63;p=dcpomatic.git diff --git a/src/lib/examine_content_job.h b/src/lib/examine_content_job.h index 8ee4f0d60..4b813bca4 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 ExamineContentJob - * @brief A class to obtain the length and MD5 digest of a content file. - */ class ExamineContentJob : public Job { public: - ExamineContentJob (boost::shared_ptr); + ExamineContentJob (boost::shared_ptr, boost::shared_ptr); ~ExamineContentJob (); std::string name () const; + std::string json_name () const; void run (); + +private: + boost::shared_ptr _content; };