summaryrefslogtreecommitdiff
path: root/src/dcp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dcp.h')
-rw-r--r--src/dcp.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/dcp.h b/src/dcp.h
index a70ff8d1..0d533284 100644
--- a/src/dcp.h
+++ b/src/dcp.h
@@ -170,13 +170,6 @@ public:
return _directory;
}
- /** @return PKLs if this DCP was read from an existing one, or if write_xml() has been called on it.
- * If neither is true, this method returns an empty vector.
- */
- std::vector<std::shared_ptr<PKL>> pkls () const {
- return _pkls;
- }
-
boost::optional<boost::filesystem::path> asset_map_path () {
return _asset_map;
}
@@ -200,8 +193,7 @@ private:
boost::filesystem::path _directory;
/** The CPLs that make up this DCP */
std::vector<std::shared_ptr<CPL>> _cpls;
- /** The PKLs that make up this DCP */
- std::vector<std::shared_ptr<PKL>> _pkls;
+ PKLMetadata _pkl_metadata;
/** File that the ASSETMAP was read from or last written to */
mutable boost::optional<boost::filesystem::path> _asset_map;