summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-01-13 13:13:35 +0000
committerCarl Hetherington <cth@carlh.net>2013-01-13 13:13:35 +0000
commitceb30c0b2e73588daa014af57deee7255b175e4d (patch)
treecacaf1593c4f4dd42e51cb6da7123d7d9a67ce7a /src
parent659559826847246325b2d20fbc654851979268b5 (diff)
Some comment tweaks.
Diffstat (limited to 'src')
-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 {