diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-08-20 00:54:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-08-20 00:54:40 +0100 |
| commit | 4d91615b49a3246654baaf7a08f10f303b79b85a (patch) | |
| tree | 8f19add6844bbc9680c455bc3f513395f933663f /src/cpl.h | |
| parent | b6488655b833ecffa6b7934cd83cced49571868c (diff) | |
Proper-ish support for multi-reel DCPs.
Diffstat (limited to 'src/cpl.h')
| -rw-r--r-- | src/cpl.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -87,11 +87,11 @@ public: }; /** CPL Reel node */ -class Reel : public XMLNode +class CPLReel : public XMLNode { public: - Reel () {} - Reel (xmlpp::Node const * node); + CPLReel () {} + CPLReel (xmlpp::Node const * node); std::string id; boost::shared_ptr<CPLAssetList> asset_list; @@ -122,7 +122,7 @@ public: std::string content_title_text; ContentKind content_kind; boost::shared_ptr<ContentVersion> content_version; - std::list<boost::shared_ptr<Reel> > reels; + std::list<boost::shared_ptr<CPLReel> > reels; }; } |
