Hacks.
[libdcp.git] / src / cpl.cc
1 #include "cpl.h"
2
3 CPL::CPL (string file)
4 {
5         file_is (file);
6
7         _id = string_tag ("Id");
8         _annotation_text = string_tag ("AnnotationText");
9         _issue_date = string_tag ("IssueDate");
10         _creator = string_tag ("Creator");
11         _content_title_text = string_tag ("ContentTitleText");
12         _content_kind = kind_tag ("ContentKind");
13         _content_version = sub (new ContentVersion, "ContentVersion");
14         ignore ("RatingList");
15         _reel_list = sub (new ReelList, "ReelList");
16 }