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/j2k_image_proxy.h | |
| parent | f1ea52e954cc466d70b5d5ee530a7af5d41b9cc6 (diff) | |
Missing overrides.
Diffstat (limited to 'src/lib/j2k_image_proxy.h')
| -rw-r--r-- | src/lib/j2k_image_proxy.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/j2k_image_proxy.h b/src/lib/j2k_image_proxy.h index d925bef86..9b51df3eb 100644 --- a/src/lib/j2k_image_proxy.h +++ b/src/lib/j2k_image_proxy.h @@ -59,13 +59,13 @@ public: Result image ( Image::Alignment alignment, boost::optional<dcp::Size> size = boost::optional<dcp::Size> () - ) const; + ) const override; - void add_metadata (xmlpp::Node *) const; - void write_to_socket (std::shared_ptr<Socket>) const; + void add_metadata (xmlpp::Node *) const override; + void write_to_socket (std::shared_ptr<Socket>) const override; /** @return true if our image is definitely the same as another, false if it is probably not */ - bool same (std::shared_ptr<const ImageProxy>) const; - int prepare (Image::Alignment alignment, boost::optional<dcp::Size> = boost::optional<dcp::Size>()) const; + bool same (std::shared_ptr<const ImageProxy>) const override; + int prepare (Image::Alignment alignment, boost::optional<dcp::Size> = boost::optional<dcp::Size>()) const override; std::shared_ptr<const dcp::Data> j2k () const { return _data; @@ -79,7 +79,7 @@ public: return _eye; } - size_t memory_used () const; + size_t memory_used () const override; private: std::shared_ptr<const dcp::Data> _data; |
