blob: b41fc1857e20197aa4629ab718c6e09c8860cb39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include "pkl.h"
using namespace std;
using namespace libdcp;
PKL::PKL (string file)
: XMLFile (file, "PackingList")
{
id = string_node ("Id");
annotation_text = string_node ("AnnotationText");
issue_date = string_node ("IssueDate");
issuer = string_node ("Issuer");
creator = string_node ("Creator");
asset_list = sub_node<PKLAssetList> ("AssetList");
}
PKLAssetList::PKLAssetList (xmlpp::Node const * node)
: XMLNode (node)
{
assets = sub_nodes<PKLAsset> ("Asset");
}
PKLAsset::PKLAsset (xmlpp::Node const * node)
: XMLNode (node)
{
id = string_node ("Id");
annotation_text = optional_string_node ("AnnotationText");
hash = string_node ("Hash");
size = int_node ("Size");
type = string_node ("Type");
}
|