diff options
Diffstat (limited to 'src/asset_map.h')
| -rw-r--r-- | src/asset_map.h | 9 |
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: |
