X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fdcp.h;h=b98dce5d4e3f277b489d41a6d2d5d49e7c75ad51;hp=d83f95f3735730c17da86e92c010e9bda7068996;hb=6ef1fc5f40567650ca9ef2b7644e4fdd97640ae6;hpb=df28b0e939bd0f12ae31e6f7ba94fa954496b3b8 diff --git a/src/lib/dcp.h b/src/lib/dcp.h index d83f95f37..b98dce5d4 100644 --- a/src/lib/dcp.h +++ b/src/lib/dcp.h @@ -24,18 +24,26 @@ #include #include #include +#include class DCPContent; class DCP { +public: + std::list > cpls () const; + dcp::DecryptedKDM decrypted_kdm () const; + protected: - DCP (boost::shared_ptr content) + explicit DCP (boost::shared_ptr content, bool tolerant) : _dcp_content (content) + , _tolerant (tolerant) {} - std::list > cpls () const; boost::shared_ptr _dcp_content; + +private: + bool _tolerant; }; #endif