diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-09 23:18:13 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-09 23:18:13 +0000 |
| commit | 41daa5821b3d3b0f450094fbf0d1e37a449f482c (patch) | |
| tree | 623e5aa9370dbb78bba14e9833a4ea0d1e026e22 /src/asset_map.h | |
| parent | e651d843c513e8dbf0967735ea702a3795ac321d (diff) | |
Comment tweaks.
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: |
