Supporters update.
[dcpomatic.git] / src / lib / verify_dcp_job.h
index 22129aee25d94439b792cb3ca560eae0b5d1b8d3..61a34750717879a288cd22c886c9a1d3bb2cad91 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "job.h"
 #include <dcp/verify.h>
-#include <boost/shared_ptr.hpp>
+
 
 class Content;
 
+
 class VerifyDCPJob : public Job
 {
 public:
-       VerifyDCPJob (explicit std::vector<boost::filesystem::path> directories);
+       VerifyDCPJob(std::vector<boost::filesystem::path> directories, std::vector<boost::filesystem::path> kdms);
+       ~VerifyDCPJob ();
 
-       std::string name () const;
-       std::string json_name () const;
-       void run ();
+       std::string name () const override;
+       std::string json_name () const override;
+       void run () override;
 
-       std::list<dcp::VerificationNote> notes () const {
+       std::vector<dcp::VerificationNote> notes () const {
                return _notes;
        }
 
@@ -41,5 +44,6 @@ private:
        void update_stage (std::string s, boost::optional<boost::filesystem::path> path);
 
        std::vector<boost::filesystem::path> _directories;
-       std::list<dcp::VerificationNote> _notes;
+       std::vector<boost::filesystem::path> _kdms;
+       std::vector<dcp::VerificationNote> _notes;
 };