diff options
Diffstat (limited to 'shell/inc')
-rw-r--r-- | shell/inc/internal/i_xml_parser_event_handler.hxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/shell/inc/internal/i_xml_parser_event_handler.hxx b/shell/inc/internal/i_xml_parser_event_handler.hxx index 77db6321b7e7..48dd746fbd2c 100644 --- a/shell/inc/internal/i_xml_parser_event_handler.hxx +++ b/shell/inc/internal/i_xml_parser_event_handler.hxx @@ -40,10 +40,6 @@ 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, @@ -59,9 +55,6 @@ 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; }; |