Fix duplicate name of _mutex in ExceptionStore and some of its children.
[dcpomatic.git] / src / lib / isdcf_metadata.h
index e63f290e47de854ed9347433739eafc57564015d..cf4ad34bcf3d92e4ec7e9dcec6636ebaa9a4f837 100644 (file)
 #ifndef DCPOMATIC_ISDCF_METADATA_H
 #define DCPOMATIC_ISDCF_METADATA_H
 
-#include <string>
-#include <libxml++/libxml++.h>
 #include <libcxml/cxml.h>
+#include <string>
+
+namespace xmlpp {
+       class Node;
+}
 
 class ISDCFMetadata
 {
@@ -34,7 +37,7 @@ public:
                , red_band (false)
                , two_d_version_of_three_d (false)
        {}
-       
+
        ISDCFMetadata (cxml::ConstNodePtr);
 
        void as_xml (xmlpp::Node *) const;
@@ -62,4 +65,6 @@ public:
        std::string mastered_luminance;
 };
 
+bool operator== (ISDCFMetadata const & a, ISDCFMetadata const & b);
+
 #endif