summaryrefslogtreecommitdiff
path: root/src/lib/types.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-12-09 01:11:59 +0100
committerCarl Hetherington <cth@carlh.net>2025-12-09 02:41:38 +0100
commit7987b15d5555adc506b207f32617798f85315961 (patch)
tree20ed24a9846a46dc1739ed0a061d22b0df372a8b /src/lib/types.h
parent783991b0f89d948f760829b923490210fb52f56a (diff)
Move CPLSummary into a faster version in libdcp.
Diffstat (limited to 'src/lib/types.h')
-rw-r--r--src/lib/types.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/lib/types.h b/src/lib/types.h
index f6b0fb3be..cb6d46369 100644
--- a/src/lib/types.h
+++ b/src/lib/types.h
@@ -117,28 +117,6 @@ std::string reel_type_to_string(ReelType type);
ReelType string_to_reel_type(std::string type);
-struct CPLSummary
-{
- CPLSummary (boost::filesystem::path p);
-
- CPLSummary (std::string d, std::string i, std::string a, boost::filesystem::path f, bool e, time_t t)
- : dcp_directory (d)
- , cpl_id (i)
- , cpl_annotation_text (a)
- , cpl_file (f)
- , encrypted (e)
- , last_write_time (t)
- {}
-
- std::string dcp_directory;
- std::string cpl_id;
- boost::optional<std::string> cpl_annotation_text;
- boost::filesystem::path cpl_file;
- /** true if this CPL has any encrypted assets */
- bool encrypted;
- time_t last_write_time;
-};
-
enum class FileTransferProtocol {
SCP,
FTP