Merge master.
[dcpomatic.git] / src / lib / types.h
index e858d1e1feb6b7827ce09d79822e5817b4fa3df0..9a6a30b861d45344325507186f5c08b2b200ea42 100644 (file)
@@ -138,6 +138,21 @@ struct Crop
        void as_xml (xmlpp::Node *) const;
 };
 
+struct CPLSummary
+{
+       CPLSummary (std::string d, std::string i, std::string a, boost::filesystem::path f)
+               : dcp_directory (d)
+               , cpl_id (i)
+               , cpl_annotation_text (a)
+               , cpl_file (f)
+       {}
+       
+       std::string dcp_directory;
+       std::string cpl_id;
+       std::string cpl_annotation_text;
+       boost::filesystem::path cpl_file;
+};
+
 extern bool operator== (Crop const & a, Crop const & b);
 extern bool operator!= (Crop const & a, Crop const & b);