Rename everything.
[libdcp.git] / src / reel_interop_closed_caption_asset.h
index 5e8f7c1ef306045dce6d1d8b39d84319fec18896..7e1ee6c5a0b48ee37e1c6ad3e12aade77bb0464e 100644 (file)
@@ -41,7 +41,7 @@
 #define LIBDCP_REEL_INTEROP_CLOSED_CAPTION_ASSET_H
 
 
-#include "interop_subtitle_asset.h"
+#include "interop_text_asset.h"
 #include "reel_closed_caption_asset.h"
 
 
@@ -51,15 +51,15 @@ namespace dcp {
 class ReelInteropClosedCaptionAsset : public ReelClosedCaptionAsset
 {
 public:
-       ReelInteropClosedCaptionAsset (std::shared_ptr<InteropSubtitleAsset> asset, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point);
+       ReelInteropClosedCaptionAsset(std::shared_ptr<InteropTextAsset> asset, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point);
        explicit ReelInteropClosedCaptionAsset (std::shared_ptr<const cxml::Node>);
 
-       std::shared_ptr<const InteropSubtitleAsset> interop_asset () const {
-               return asset_of_type<const InteropSubtitleAsset>();
+       std::shared_ptr<const InteropTextAsset> interop_asset() const {
+               return asset_of_type<const InteropTextAsset>();
        }
 
-       std::shared_ptr<InteropSubtitleAsset> interop_asset () {
-               return asset_of_type<InteropSubtitleAsset>();
+       std::shared_ptr<InteropTextAsset> interop_asset() {
+               return asset_of_type<InteropTextAsset>();
        }
 
        xmlpp::Node* write_to_cpl (xmlpp::Node* node, Standard standard) const override;