diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-24 04:15:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-24 04:15:26 +0100 |
| commit | ceaf7bc52712cb60708ed5eb5c62c5e463dd8e89 (patch) | |
| tree | c55e4b85ee30138ce83263045d77d01631378b2e /src/subtitle_asset.h | |
| parent | 6c37cc1979b2a01205a888c4c98f3334685ee8dd (diff) | |
Tidying.
Diffstat (limited to 'src/subtitle_asset.h')
| -rw-r--r-- | src/subtitle_asset.h | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/src/subtitle_asset.h b/src/subtitle_asset.h index 7502ad33..0afce3d0 100644 --- a/src/subtitle_asset.h +++ b/src/subtitle_asset.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net> This file is part of libdcp. @@ -31,6 +31,12 @@ files in the program, then also delete it here. */ + +/** @file src/subtitle_asset.h + * @brief SubtitleAsset class + */ + + #ifndef LIBDCP_SUBTITLE_ASSET_H #define LIBDCP_SUBTITLE_ASSET_H @@ -43,18 +49,21 @@ #include <boost/shared_array.hpp> #include <map> + namespace xmlpp { class Element; } + struct interop_dcp_font_test; struct smpte_dcp_font_test; struct pull_fonts_test1; struct pull_fonts_test2; struct pull_fonts_test3; -namespace dcp -{ + +namespace dcp { + class SubtitleString; class SubtitleImage; @@ -64,13 +73,15 @@ class SubtitleNode; class LoadFontNode; class ReelAsset; + namespace order { class Part; struct Context; } + /** @class SubtitleAsset - * @brief A parent for classes representing a file containing subtitles. + * @brief A parent for classes representing a file containing subtitles * * This class holds a list of Subtitle objects which it can extract * from the appropriate part of either an Interop or SMPTE XML file. @@ -195,6 +206,8 @@ private: static void pull_fonts (std::shared_ptr<order::Part> part); }; + } + #endif |
