summaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/types.h b/src/types.h
index edabb9e2..1a74039f 100644
--- a/src/types.h
+++ b/src/types.h
@@ -29,6 +29,10 @@
namespace libdcp
{
+namespace parse {
+ class AssetMap;
+}
+
/** Identifier for a sound channel */
enum Channel {
LEFT = 0, ///< left
@@ -141,6 +145,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