Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*
3 : : * This file is part of the LibreOffice project.
4 : : *
5 : : * This Source Code Form is subject to the terms of the Mozilla Public
6 : : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : : *
9 : : * This file incorporates work covered by the following license notice:
10 : : *
11 : : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : : * contributor license agreements. See the NOTICE file distributed
13 : : * with this work for additional information regarding copyright
14 : : * ownership. The ASF licenses this file to you under the Apache
15 : : * License, Version 2.0 (the "License"); you may not use this file
16 : : * except in compliance with the License. You may obtain a copy of
17 : : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : : */
19 : :
20 : : #ifndef I_XML_PARSER_EVENT_HANDLER_HXX_INCLUDED
21 : : #define I_XML_PARSER_EVENT_HANDLER_HXX_INCLUDED
22 : :
23 : : #include <string>
24 : : #include <map>
25 : :
26 : : #if defined(XML_UNICODE) || defined(XML_UNICODE_WCHAR_T)
27 : : typedef std::wstring string_t;
28 : : typedef wchar_t char_t;
29 : : #else
30 : : typedef std::string string_t;
31 : : typedef char char_t;
32 : : #endif
33 : :
34 : : // name-value container
35 : : typedef std::map<string_t, string_t> xml_tag_attribute_container_t;
36 : :
37 : :
38 : 0 : class i_xml_parser_event_handler
39 : : {
40 : : public:
41 : 0 : virtual ~i_xml_parser_event_handler() {};
42 : :
43 : : virtual void start_document() = 0;
44 : :
45 : : virtual void end_document() = 0;
46 : :
47 : : virtual void start_element(
48 : : const string_t& raw_name,
49 : : const string_t& local_name,
50 : : const xml_tag_attribute_container_t& attributes) = 0;
51 : :
52 : : virtual void end_element(
53 : : const string_t& raw_name,
54 : : const string_t& local_name) = 0;
55 : :
56 : : virtual void characters(
57 : : const string_t& character) = 0;
58 : :
59 : : virtual void ignore_whitespace(
60 : : const string_t& whitespaces) = 0;
61 : :
62 : : virtual void processing_instruction(
63 : : const string_t& target, const string_t& data) = 0;
64 : :
65 : : virtual void comment(const string_t& comment) = 0;
66 : : };
67 : :
68 : : #endif
69 : :
70 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|