diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-27 22:38:43 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-27 22:38:43 +0000 |
| commit | 00e9647a9ede540f2d567c19025278c25a87c830 (patch) | |
| tree | 145f7fc92cfa0670e7da304b965d30f751ab1b14 /src/reel.h | |
| parent | 8c2f3517e868078b551bb01d975f2956cb692fbf (diff) | |
Various tweaks; work on read_dcp example.
Diffstat (limited to 'src/reel.h')
| -rw-r--r-- | src/reel.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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; |
