summaryrefslogtreecommitdiff
path: root/src/dcp.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-17 17:47:28 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-17 17:47:28 +0100
commitb6718fb437f242fd5127194d4c94e39d71c5e1ad (patch)
treee6c0fb61d5252bb72969cdeaa752875bb06e14e3 /src/dcp.h
parent1c22ef308a1d62b4c6935ede8233b1fea082b0ca (diff)
Some comments; fix up a UUID I think.
Diffstat (limited to 'src/dcp.h')
-rw-r--r--src/dcp.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/dcp.h b/src/dcp.h
index 2c320451..6896267c 100644
--- a/src/dcp.h
+++ b/src/dcp.h
@@ -26,6 +26,7 @@ namespace libdcp
class Asset;
+/** A class to create a DCP */
class DCP
{
public:
@@ -59,11 +60,17 @@ private:
static std::string content_type_string (ContentType);
+ /** the directory that we are writing to */
std::string _directory;
+ /** the name of the DCP */
std::string _name;
+ /** the content type of the DCP */
ContentType _content_type;
+ /** frames per second */
int _fps;
+ /** length in frames */
int _length;
+ /** assets */
std::list<boost::shared_ptr<Asset> > _assets;
};