summaryrefslogtreecommitdiff
path: root/src/asset_map.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-01-14 20:15:43 +0000
committerCarl Hetherington <cth@carlh.net>2013-01-14 20:15:43 +0000
commited6a471b61d36a3ba7e8696fa3e5606406c5cf62 (patch)
tree3ca098925eb269c4cd41ff22124773ba7d36c14b /src/asset_map.h
parent67cf9c95d190b1f2a67d73c0a7f712e213b6e71a (diff)
parent62ee85a258aa9329544d8542dfbcc40ce8177a7a (diff)
Merge master
Diffstat (limited to 'src/asset_map.h')
-rw-r--r--src/asset_map.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/asset_map.h b/src/asset_map.h
index 10a0915f..8cf89b4b 100644
--- a/src/asset_map.h
+++ b/src/asset_map.h
@@ -27,6 +27,9 @@
namespace libdcp {
+/** @class Chunk
+ * @brief A simple parser for and representation of a \<Chunk\> node within an asset map.
+ */
class Chunk : public XMLNode
{
public:
@@ -39,6 +42,9 @@ public:
int64_t length;
};
+/** @class AssetMapAsset
+ * @brief A simple parser for and representation of an \<AssetMap\> node within an asset map.
+ */
class AssetMapAsset : public XMLNode
{
public:
@@ -50,6 +56,9 @@ public:
std::list<boost::shared_ptr<Chunk> > chunks;
};
+/** @class AssetMap
+ * @brief A simple parser for and representation of an asset map file.
+ */
class AssetMap : public XMLFile
{
public: