diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-12-02 20:37:15 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-12-03 21:19:28 +0100 |
| commit | d2807cacb97dd6dd9b519af7d697a2a10e39564e (patch) | |
| tree | 8eb77333c7a399084fc435ac4efc3d542037c259 /src/lib/dcp_subtitle_content.h | |
| parent | f1ea52e954cc466d70b5d5ee530a7af5d41b9cc6 (diff) | |
Missing overrides.
Diffstat (limited to 'src/lib/dcp_subtitle_content.h')
| -rw-r--r-- | src/lib/dcp_subtitle_content.h | 12 |
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; |
