diff options
Diffstat (limited to 'shell/inc/contentreader.hxx')
-rw-r--r-- | shell/inc/contentreader.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/inc/contentreader.hxx b/shell/inc/contentreader.hxx index 2b20e98fcff7..d51ad7fbc4c7 100644 --- a/shell/inc/contentreader.hxx +++ b/shell/inc/contentreader.hxx @@ -29,7 +29,7 @@ class StreamInterface; class CContentReader : public CBaseReader { public: - virtual ~CContentReader(); + virtual ~CContentReader() override; CContentReader( const std::string& DocumentName, LocaleSet_t const & DocumentLocale ); @@ -57,7 +57,7 @@ protected: // protected because its only an implementation relevant class virtual void start_element( const std::wstring& raw_name, const std::wstring& local_name, - const XmlTagAttributes_t& attributes); + const XmlTagAttributes_t& attributes) override; /** end_element occurs when a tag is closed @@ -67,14 +67,14 @@ protected: // protected because its only an implementation relevant class local name of the tag. */ virtual void end_element( - const std::wstring& raw_name, const std::wstring& local_name); + const std::wstring& raw_name, const std::wstring& local_name) override; /** characters occurs when receiving characters @param character content of the information received. */ - virtual void characters(const std::wstring& character); + virtual void characters(const std::wstring& character) override; protected: /** choose an appropriate tag reader to handle the tag. |