diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-09 13:58:27 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-09 13:58:27 +0200 |
| commit | b915348a8288d68e2ff114fb3dd89ad22e699969 (patch) | |
| tree | 46ce54a62bef93a544ada376d2c42ad4ab50f596 /src/lib/dcp_content.h | |
| parent | c80f7a440de73dead499764b4073d39d54c68b9f (diff) | |
Add some missing override labels.
Diffstat (limited to 'src/lib/dcp_content.h')
| -rw-r--r-- | src/lib/dcp_content.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/dcp_content.h b/src/lib/dcp_content.h index 40ed181fe..d57c0059c 100644 --- a/src/lib/dcp_content.h +++ b/src/lib/dcp_content.h @@ -65,18 +65,18 @@ public: return std::dynamic_pointer_cast<const DCPContent> (Content::shared_from_this ()); } - dcpomatic::DCPTime full_length (std::shared_ptr<const Film> film) const; - dcpomatic::DCPTime approximate_length () const; + dcpomatic::DCPTime full_length (std::shared_ptr<const Film> film) const override; + dcpomatic::DCPTime approximate_length () const override; - 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; - std::string identifier () const; - void take_settings_from (std::shared_ptr<const Content> c); + 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; + std::string identifier () const override; + void take_settings_from (std::shared_ptr<const Content> c) override; void set_default_colour_conversion (); - std::list<dcpomatic::DCPTime> reel_split_points (std::shared_ptr<const Film> film) const; + std::list<dcpomatic::DCPTime> reel_split_points (std::shared_ptr<const Film> film) const override; std::vector<boost::filesystem::path> directories () const; @@ -173,7 +173,7 @@ public: private: friend struct reels_test5; - void add_properties (std::shared_ptr<const Film> film, std::list<UserProperty>& p) const; + void add_properties (std::shared_ptr<const Film> film, std::list<UserProperty>& p) const override; void read_directory (boost::filesystem::path); void read_sub_directory (boost::filesystem::path); |
