X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp_content.h;h=6d707670f27eb6bc267d98cefe7bbcd487cdc31f;hb=2f796cd531de522a3b7ed03a9942f3c55f3a0b5b;hp=b9c4d9ee511a0a0ea90c6119bb67ec09c28b52bb;hpb=736745c86cefc6d5d4d8098799efc86f0f639061;p=dcpomatic.git diff --git a/src/lib/dcp_content.h b/src/lib/dcp_content.h index b9c4d9ee5..6d707670f 100644 --- a/src/lib/dcp_content.h +++ b/src/lib/dcp_content.h @@ -156,6 +156,16 @@ public: bool kdm_timing_window_valid () const; + Resolution resolution () const; + + std::vector ratings () const { + return _ratings; + } + + std::string content_version () const { + return _content_version; + } + private: friend class reels_test5; @@ -203,6 +213,8 @@ private: /** List of the lengths of the reels in this DCP */ std::list _reel_lengths; std::map _markers; + std::vector _ratings; + std::string _content_version; }; #endif