summaryrefslogtreecommitdiff
path: root/src/lib/examine_content_job.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/examine_content_job.h')
-rw-r--r--src/lib/examine_content_job.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/examine_content_job.h b/src/lib/examine_content_job.h
index 729c287b5..b6903b86b 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 <boost/shared_ptr.hpp>
#include "job.h"
-/** @class ExamineContentJob
- * @brief A class to obtain the length and MD5 digest of a content file.
- */
+class Content;
+class Log;
+
class ExamineContentJob : public Job
{
public:
- ExamineContentJob (boost::shared_ptr<Film>, boost::shared_ptr<Job> req);
+ ExamineContentJob (boost::shared_ptr<const Film>, boost::shared_ptr<Content>);
~ExamineContentJob ();
std::string name () const;
void run ();
+
+private:
+ boost::shared_ptr<Content> _content;
};