summaryrefslogtreecommitdiff
path: root/src/cpl.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-08-20 00:54:40 +0100
committerCarl Hetherington <cth@carlh.net>2012-08-20 00:54:40 +0100
commit4d91615b49a3246654baaf7a08f10f303b79b85a (patch)
tree8f19add6844bbc9680c455bc3f513395f933663f /src/cpl.h
parentb6488655b833ecffa6b7934cd83cced49571868c (diff)
Proper-ish support for multi-reel DCPs.
Diffstat (limited to 'src/cpl.h')
-rw-r--r--src/cpl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpl.h b/src/cpl.h
index ed42c3a9..0005219a 100644
--- a/src/cpl.h
+++ b/src/cpl.h
@@ -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;
};
}