diff options
Diffstat (limited to 'src/cpl.cc')
| -rw-r--r-- | src/cpl.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/cpl.cc b/src/cpl.cc new file mode 100644 index 00000000..1eba666c --- /dev/null +++ b/src/cpl.cc @@ -0,0 +1,16 @@ +#include "cpl.h" + +CPL::CPL (string file) +{ + file_is (file); + + _id = string_tag ("Id"); + _annotation_text = string_tag ("AnnotationText"); + _issue_date = string_tag ("IssueDate"); + _creator = string_tag ("Creator"); + _content_title_text = string_tag ("ContentTitleText"); + _content_kind = kind_tag ("ContentKind"); + _content_version = sub (new ContentVersion, "ContentVersion"); + ignore ("RatingList"); + _reel_list = sub (new ReelList, "ReelList"); +} |
