X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexamine_content_job.h;h=b97e7823d6b99b808e18c0ddd0ab6fbbd4ba5096;hb=80f27f81cc7991f52e4a41c7f687681fd9c15a65;hp=d87bd0876b23b160c346643dc29768689aa7d11c;hpb=e3636952b0d443f61c2966450cc68bc25480dfe2;p=dcpomatic.git diff --git a/src/lib/examine_content_job.h b/src/lib/examine_content_job.h index d87bd0876..b97e7823d 100644 --- a/src/lib/examine_content_job.h +++ b/src/lib/examine_content_job.h @@ -17,27 +17,23 @@ */ -/** @file src/examine_content_job.h - * @brief A class to run through content at high speed to find its length. - */ - #include "job.h" +#include -class Decoder; +class Content; +class Log; -/** @class ExamineContentJob - * @brief A class to run through content at high speed to find its length. - */ 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 _decoder; + boost::shared_ptr _content; };