Get progress during formatting.
[dcpomatic.git] / src / lib / verify_dcp_job.h
index a93a7adfa30ae83231097f619c97acb57f8c33a2..3372cd6023b57437f0d308789c1583d1133a1404 100644 (file)
@@ -20,7 +20,6 @@
 
 #include "job.h"
 #include <dcp/verify.h>
-#include <boost/shared_ptr.hpp>
 
 class Content;
 
@@ -28,12 +27,13 @@ class VerifyDCPJob : public Job
 {
 public:
        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;
        }
 
@@ -41,5 +41,5 @@ 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;
 };