Remove now-unused job dependencies.
[dcpomatic.git] / src / lib / examine_content_job.h
index d87bd0876b23b160c346643dc29768689aa7d11c..8ee4f0d608de5e8b591e68f23dd2634929065dbe 100644 (file)
 */
 
 /** @file  src/examine_content_job.h
- *  @brief A class to run through content at high speed to find its length.
+ *  @brief A class to obtain the length and MD5 digest of a content file.
  */
 
 #include "job.h"
 
-class Decoder;
-
 /** @class ExamineContentJob
- *  @brief A class to run through content at high speed to find its length.
+ *  @brief A class to obtain the length and MD5 digest of a content file.
  */
 class ExamineContentJob : public Job
 {
 public:
-       ExamineContentJob (boost::shared_ptr<Film>, boost::shared_ptr<Job> req);
+       ExamineContentJob (boost::shared_ptr<Film>);
        ~ExamineContentJob ();
 
        std::string name () const;
        void run ();
-
-private:
-       boost::shared_ptr<Decoder> _decoder;
 };