diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-07-03 16:53:45 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-07-03 16:53:45 +0200 |
commit | a6f5770b4aaaa6506a22eae0d641ad48f9b6d239 (patch) | |
tree | a6c682cae9034bc67f23c410dd3d0227d36d680b /shell/inc | |
parent | 5bc343cc723f993ed112cf5c700e3f397527d671 (diff) |
Revert "loplugin:unusedmethods sax,shell,stoc,basegfx"
The basegfx changes appear to break Windows builds.
This reverts commit 3b32c5898ff4e744d3f18b00421b433500426d74.
Diffstat (limited to 'shell/inc')
-rw-r--r-- | shell/inc/internal/i_xml_parser_event_handler.hxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/shell/inc/internal/i_xml_parser_event_handler.hxx b/shell/inc/internal/i_xml_parser_event_handler.hxx index 48dd746fbd2c..77db6321b7e7 100644 --- a/shell/inc/internal/i_xml_parser_event_handler.hxx +++ b/shell/inc/internal/i_xml_parser_event_handler.hxx @@ -40,6 +40,10 @@ class i_xml_parser_event_handler public: virtual ~i_xml_parser_event_handler() {}; + virtual void start_document() = 0; + + virtual void end_document() = 0; + virtual void start_element( const string_t& raw_name, const string_t& local_name, @@ -55,6 +59,9 @@ public: virtual void ignore_whitespace( const string_t& whitespaces) = 0; + virtual void processing_instruction( + const string_t& target, const string_t& data) = 0; + virtual void comment(const string_t& comment) = 0; }; |