35 #ifndef LIBDCP_ASSET_LIST_H
36 #define LIBDCP_ASSET_LIST_H
50 AssetList(Standard standard, boost::optional<std::string> annotation_text, std::string issue_date, std::string issuer, std::string creator)
52 , _annotation_text(annotation_text)
53 , _issue_date(issue_date)
58 dcp::Standard standard()
const {
62 void set_annotation_text(std::string annotation_text) {
63 _annotation_text = annotation_text;
66 void set_issue_date(std::string issue_date) {
67 _issue_date = issue_date;
70 void set_issuer(std::string issuer) {
74 void set_creator(std::string creator) {
78 boost::optional<std::string> annotation_text()
const {
79 return _annotation_text;
83 dcp::Standard _standard = dcp::Standard::SMPTE;
84 boost::optional<std::string> _annotation_text;
85 std::string _issue_date;
Namespace for everything in libdcp.