summaryrefslogtreecommitdiff
path: root/src/mono_picture_asset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mono_picture_asset.h')
-rw-r--r--src/mono_picture_asset.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mono_picture_asset.h b/src/mono_picture_asset.h
index a10eada0..1febf4ed 100644
--- a/src/mono_picture_asset.h
+++ b/src/mono_picture_asset.h
@@ -21,6 +21,9 @@
#define LIBDCP_MONO_PICTURE_ASSET_H
#include "picture_asset.h"
+#include "exceptions.h"
+#include <KM_error.h>
+#include <AS_DCP.h>
namespace dcp {
@@ -35,7 +38,7 @@ public:
/** Create a MonoPictureAsset by reading a file.
* @param file Asset file to read.
*/
- MonoPictureAsset (boost::filesystem::path file);
+ MonoPictureAsset (boost::filesystem::path file, AssetType type);
/** Create a MonoPictureAsset with a given edit rate.
* @param edit_rate Edit rate (i.e. frame rate) in frames per second.
@@ -55,6 +58,8 @@ public:
private:
std::string cpl_node_name () const;
+
+ AssetType _type;
};
}