diff options
Diffstat (limited to 'src/reel_closed_caption_asset.h')
| -rw-r--r-- | src/reel_closed_caption_asset.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/reel_closed_caption_asset.h b/src/reel_closed_caption_asset.h index 405de34b..adc1e1eb 100644 --- a/src/reel_closed_caption_asset.h +++ b/src/reel_closed_caption_asset.h @@ -44,7 +44,7 @@ #include "language_tag.h" #include "reel_asset.h" #include "reel_file_asset.h" -#include "subtitle_asset.h" +#include "text_asset.h" struct verify_invalid_language2; @@ -59,15 +59,15 @@ namespace dcp { class ReelClosedCaptionAsset : public ReelFileAsset { public: - ReelClosedCaptionAsset (std::shared_ptr<SubtitleAsset> asset, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point); + ReelClosedCaptionAsset(std::shared_ptr<TextAsset> asset, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point); explicit ReelClosedCaptionAsset (std::shared_ptr<const cxml::Node>); - std::shared_ptr<const SubtitleAsset> asset () const { - return asset_of_type<const SubtitleAsset>(); + std::shared_ptr<const TextAsset> asset () const { + return asset_of_type<const TextAsset>(); } - std::shared_ptr<SubtitleAsset> asset () { - return asset_of_type<SubtitleAsset>(); + std::shared_ptr<TextAsset> asset () { + return asset_of_type<TextAsset>(); } bool equals(std::shared_ptr<const ReelClosedCaptionAsset>, EqualityOptions const&, NoteHandler) const; |
