summaryrefslogtreecommitdiff
path: root/src/dcp.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-01-09 23:18:13 +0000
committerCarl Hetherington <cth@carlh.net>2013-01-09 23:18:13 +0000
commit41daa5821b3d3b0f450094fbf0d1e37a449f482c (patch)
tree623e5aa9370dbb78bba14e9833a4ea0d1e026e22 /src/dcp.h
parente651d843c513e8dbf0967735ea702a3795ac321d (diff)
Comment tweaks.
Diffstat (limited to 'src/dcp.h')
-rw-r--r--src/dcp.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dcp.h b/src/dcp.h
index d4f6aff9..b01934de 100644
--- a/src/dcp.h
+++ b/src/dcp.h
@@ -45,6 +45,7 @@ class SubtitleAsset;
class Reel;
class AssetMap;
+/** @brief A CPL within a DCP */
class CPL
{
public:
@@ -102,7 +103,9 @@ private:
/** reels */
std::list<boost::shared_ptr<const Reel> > _reels;
+ /** our UUID */
std::string _uuid;
+ /** a SHA1 digest of our XML */
mutable std::string _digest;
};
@@ -181,6 +184,7 @@ private:
/** the directory that we are writing to */
std::string _directory;
+ /** our CPLs */
std::list<boost::shared_ptr<const CPL> > _cpls;
};