summaryrefslogtreecommitdiff
path: root/src/lib/dcp_subtitle_content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-04-09 13:58:27 +0200
committerCarl Hetherington <cth@carlh.net>2022-04-28 23:42:29 +0200
commit0dcacddac3ba086b16d5c0577f4a44c12dd564a9 (patch)
tree698fc6162fe09bd05b075c07fb14d70f5ddd65df /src/lib/dcp_subtitle_content.h
parente6e220eb80ec8258e417794e0f142ebddffc6c25 (diff)
Add some missing override labels.
Diffstat (limited to 'src/lib/dcp_subtitle_content.h')
-rw-r--r--src/lib/dcp_subtitle_content.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/dcp_subtitle_content.h b/src/lib/dcp_subtitle_content.h
index f4a767d21..5949f8b0b 100644
--- a/src/lib/dcp_subtitle_content.h
+++ b/src/lib/dcp_subtitle_content.h
@@ -27,12 +27,12 @@ public:
DCPSubtitleContent (boost::filesystem::path);
DCPSubtitleContent (cxml::ConstNodePtr, int);
- void examine (std::shared_ptr<const Film> film, std::shared_ptr<Job>);
- std::string summary () const;
- std::string technical_summary () const;
- void as_xml (xmlpp::Node *, bool with_paths) const;
- dcpomatic::DCPTime full_length (std::shared_ptr<const Film> film) const;
- dcpomatic::DCPTime approximate_length () const;
+ void examine (std::shared_ptr<const Film> film, std::shared_ptr<Job>) override;
+ std::string summary () const override;
+ std::string technical_summary () const override;
+ void as_xml (xmlpp::Node *, bool with_paths) const override;
+ dcpomatic::DCPTime full_length (std::shared_ptr<const Film> film) const override;
+ dcpomatic::DCPTime approximate_length () const override;
private:
dcpomatic::ContentTime _length;