diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-09-18 23:32:44 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-09-18 23:32:44 +0100 |
| commit | c23087acc887289f04f927bf7ede352324f4081b (patch) | |
| tree | a54446dae4b875fa01dcfeadf9de7c26182e8a69 /src/pkl_file.cc | |
| parent | 075cb794fbb5871d1a361995f5e55ca220316a02 (diff) | |
Some renaming of XML-related methods.
Diffstat (limited to 'src/pkl_file.cc')
| -rw-r--r-- | src/pkl_file.cc | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/pkl_file.cc b/src/pkl_file.cc index d823e585..21763f27 100644 --- a/src/pkl_file.cc +++ b/src/pkl_file.cc @@ -31,21 +31,21 @@ using namespace libdcp; PKLFile::PKLFile (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<PKLAsset> ("AssetList", "Asset"); + id = string_child ("Id"); + annotation_text = string_child ("AnnotationText"); + issue_date = string_child ("IssueDate"); + issuer = string_child ("Issuer"); + creator = string_child ("Creator"); + assets = type_grand_children<PKLAsset> ("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"); - original_file_name = optional_string_node ("OriginalFileName"); + id = string_child ("Id"); + annotation_text = optional_string_child ("AnnotationText"); + hash = string_child ("Hash"); + size = int64_child ("Size"); + type = string_child ("Type"); + original_file_name = optional_string_child ("OriginalFileName"); } |
