Use new Windows long filename workaround with disk writer (#1755).
[dcpomatic.git] / src / lib / verify_dcp_job.h
index f61e4437243b45ea363f9c8aaa4b11e76af93d43..3372cd6023b57437f0d308789c1583d1133a1404 100644 (file)
 
 #include "job.h"
 #include <dcp/verify.h>
-#include <boost/shared_ptr.hpp>
 
 class Content;
 
 class VerifyDCPJob : public Job
 {
 public:
-       VerifyDCPJob (std::vector<boost::filesystem::path> directories);
+       explicit VerifyDCPJob (std::vector<boost::filesystem::path> directories);
+       ~VerifyDCPJob ();
 
        std::string name () const;
        std::string json_name () const;
        void run ();
 
-       std::list<dcp::VerificationNote> notes () const {
+       std::vector<dcp::VerificationNote> notes () const {
                return _notes;
        }
 
 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<dcp::VerificationNote> _notes;
 };