Fixes for new libdcp with multiple content versions.
[dcpomatic.git] / src / lib / dcp_content.h
index 6d707670f27eb6bc267d98cefe7bbcd487cdc31f..e8532ff57e70972c707c9eec0999df0853c7a40d 100644 (file)
@@ -162,8 +162,8 @@ public:
                return _ratings;
        }
 
-       std::string content_version () const {
-               return _content_version;
+       std::vector<std::string> content_versions () const {
+               return _content_versions;
        }
 
 private:
@@ -214,7 +214,7 @@ private:
        std::list<int64_t> _reel_lengths;
        std::map<dcp::Marker, dcpomatic::ContentTime> _markers;
        std::vector<dcp::Rating> _ratings;
-       std::string _content_version;
+       std::vector<std::string> _content_versions;
 };
 
 #endif