diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-07-17 17:47:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-07-17 17:47:28 +0100 |
| commit | b6718fb437f242fd5127194d4c94e39d71c5e1ad (patch) | |
| tree | e6c0fb61d5252bb72969cdeaa752875bb06e14e3 /src/dcp.h | |
| parent | 1c22ef308a1d62b4c6935ede8233b1fea082b0ca (diff) | |
Some comments; fix up a UUID I think.
Diffstat (limited to 'src/dcp.h')
| -rw-r--r-- | src/dcp.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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; }; |
