diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-13 13:13:35 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-13 13:13:35 +0000 |
| commit | ceb30c0b2e73588daa014af57deee7255b175e4d (patch) | |
| tree | cacaf1593c4f4dd42e51cb6da7123d7d9a67ce7a /src | |
| parent | 659559826847246325b2d20fbc654851979268b5 (diff) | |
Some comment tweaks.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dcp.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 { |
