No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / isdcf_metadata.h
index 0fb7e7baa0e1292468e0573d5d7424e7e7c165b2..0e904238df62ba96c19f28cc3391a2d76d2e307a 100644 (file)
 #ifndef DCPOMATIC_ISDCF_METADATA_H
 #define DCPOMATIC_ISDCF_METADATA_H
 
-#include <string>
+#include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
-
-namespace cxml {
-       class Node;
-}
+#include <string>
 
 class ISDCFMetadata
 {
@@ -37,8 +34,8 @@ public:
                , red_band (false)
                , two_d_version_of_three_d (false)
        {}
-       
-       ISDCFMetadata (boost::shared_ptr<const cxml::Node>);
+
+       ISDCFMetadata (cxml::ConstNodePtr);
 
        void as_xml (xmlpp::Node *) const;
        void read_old_metadata (std::string, std::string);
@@ -65,4 +62,6 @@ public:
        std::string mastered_luminance;
 };
 
+bool operator== (ISDCFMetadata const & a, ISDCFMetadata const & b);
+
 #endif