Some comment tweaks.
authorCarl Hetherington <cth@carlh.net>
Sun, 13 Jan 2013 13:13:35 +0000 (13:13 +0000)
committerCarl Hetherington <cth@carlh.net>
Sun, 13 Jan 2013 13:13:35 +0000 (13:13 +0000)
src/dcp.h

index b01934def38c43ff4012f4f77b1f0629f72835e7..c5734542a97e17cff311f199da3f1c2200c0b154 100644 (file)
--- 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 {