X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fisdcf_metadata.h;h=d07cd86052430aad2503779ec33e800954ccae14;hb=bd81f33a39c6d20e78fce0d5be3b2d487b6df344;hp=62c821d820c733dd591b32bba8554ec8045fbe34;hpb=e894cfe3d891135d1b92b62603a464e42bd6ed5c;p=dcpomatic.git diff --git a/src/lib/isdcf_metadata.h b/src/lib/isdcf_metadata.h index 62c821d82..d07cd8605 100644 --- a/src/lib/isdcf_metadata.h +++ b/src/lib/isdcf_metadata.h @@ -21,9 +21,12 @@ #define DCPOMATIC_ISDCF_METADATA_H #include -#include #include +namespace xmlpp { + class Node; +} + class ISDCFMetadata { public: @@ -34,7 +37,7 @@ public: , red_band (false) , two_d_version_of_three_d (false) {} - + ISDCFMetadata (cxml::ConstNodePtr); void as_xml (xmlpp::Node *) const; @@ -47,7 +50,6 @@ public: std::string rating; std::string studio; std::string facility; - std::string package_type; /** true if this is a temporary version (without final picture or sound) */ bool temp_version; /** true if this is a pre-release version (final picture and sound, but without accessibility features) */ @@ -62,4 +64,6 @@ public: std::string mastered_luminance; }; +bool operator== (ISDCFMetadata const & a, ISDCFMetadata const & b); + #endif