Write encryption test all to the right place. Some more XML writes unformatted to...
[libdcp.git] / src / types.h
index edabb9e233b9c9595e704fb5a7831bd003193bc9..013c18630847bc02d5c9930466753b906542ecb2 100644 (file)
 #define LIBDCP_TYPES_H
 
 #include <string>
+#include <boost/shared_ptr.hpp>
 
 namespace libdcp
 {
 
+namespace parse {
+       class AssetMap;
+}
+
 /** Identifier for a sound channel */
 enum Channel {
        LEFT = 0,      ///< left
@@ -141,6 +146,8 @@ extern bool operator== (Color const & a, Color const & b);
 extern bool operator!= (Color const & a, Color const & b);
 extern std::ostream & operator<< (std::ostream & s, Color const & c);
 
+typedef std::pair<std::string, boost::shared_ptr<const parse::AssetMap> > PathAssetMap;
+
 }
 
 #endif