summaryrefslogtreecommitdiff
path: root/src/reel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-27 22:38:43 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-27 22:38:43 +0000
commit00e9647a9ede540f2d567c19025278c25a87c830 (patch)
tree145f7fc92cfa0670e7da304b965d30f751ab1b14 /src/reel.h
parent8c2f3517e868078b551bb01d975f2956cb692fbf (diff)
Various tweaks; work on read_dcp example.
Diffstat (limited to 'src/reel.h')
-rw-r--r--src/reel.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/reel.h b/src/reel.h
index 30a0cc4e..14def9c8 100644
--- a/src/reel.h
+++ b/src/reel.h
@@ -39,6 +39,7 @@ class ReelAsset;
class ReelPictureAsset;
class ReelSoundAsset;
class ReelSubtitleAsset;
+class Content;
/** @brief A reel within a DCP; the part which actually refers to picture, sound and subtitle data */
class Reel : public Object
@@ -80,7 +81,9 @@ public:
bool equals (boost::shared_ptr<const Reel> other, EqualityOptions opt, boost::function<void (NoteType, std::string)> notes) const;
- void add_kdm (KDM const &);
+ void add (KDM const &);
+
+ void resolve_refs (std::list<boost::shared_ptr<Object> >);
private:
boost::shared_ptr<ReelPictureAsset> _main_picture;