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.cc | |
| parent | b6488655b833ecffa6b7934cd83cced49571868c (diff) | |
Proper-ish support for multi-reel DCPs.
Diffstat (limited to 'src/cpl.cc')
| -rw-r--r-- | src/cpl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -38,7 +38,7 @@ CPL::CPL (string file) content_kind = kind_node ("ContentKind"); content_version = optional_sub_node<ContentVersion> ("ContentVersion"); ignore_node ("RatingList"); - reels = sub_nodes<Reel> ("ReelList", "Reel"); + reels = sub_nodes<CPLReel> ("ReelList", "Reel"); ignore_node ("Issuer"); ignore_node ("Signer"); @@ -55,7 +55,7 @@ ContentVersion::ContentVersion (xmlpp::Node const * node) done (); } -Reel::Reel (xmlpp::Node const * node) +CPLReel::CPLReel (xmlpp::Node const * node) : XMLNode (node) { id = string_node ("Id"); |
