summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/dcp.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dcp.h b/src/dcp.h
index b01934de..c5734542 100644
--- a/src/dcp.h
+++ b/src/dcp.h
@@ -147,8 +147,12 @@ public:
*/
bool equals (DCP const & other, EqualityOptions options, std::list<std::string>& notes) const;
+ /** Add a CPL to this DCP.
+ * @param cpl CPL to add.
+ */
void add_cpl (boost::shared_ptr<CPL> cpl);
+ /** @return The list of CPLs in this DCP */
std::list<boost::shared_ptr<const CPL> > cpls () const {
return _cpls;
}
@@ -174,6 +178,7 @@ private:
*/
void write_assetmap (std::string pkl_uuid, int pkl_length) const;
+ /** @return Assets in all this CPLs in this DCP */
std::list<boost::shared_ptr<const Asset> > assets () const;
struct Files {