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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/examine_content_job.h b/src/lib/examine_content_job.h
index b6903b86b..f0d9eae93 100644
--- a/src/lib/examine_content_job.h
+++ b/src/lib/examine_content_job.h
@@ -26,7 +26,7 @@ class Log;
class ExamineContentJob : public Job
{
public:
- ExamineContentJob (boost::shared_ptr<const Film>, boost::shared_ptr<Content>);
+ ExamineContentJob (boost::shared_ptr<const Film>, boost::shared_ptr<Content>, bool calculate_digest);
~ExamineContentJob ();
std::string name () const;
@@ -34,5 +34,6 @@ public:
private:
boost::shared_ptr<Content> _content;
+ bool _calculate_digest;
};