#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"); assets = sub_nodes ("AssetList", "Asset"); } PKLAsset::PKLAsset (xmlpp::Node const * node) : XMLNode (node) { id = string_node ("Id"); annotation_text = optional_string_node ("AnnotationText"); hash = string_node ("Hash"); size = int64_node ("Size"); type = string_node ("Type"); }