Resolves: tdf#143372 Exclude {qtz} KeyID from SvxLanguageBox list
[LibreOffice.git] / shell / inc / i_xml_parser_event_handler.hxx
blob48dd746fbd2ca663d30d1f1609c5901e2350ca66
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SHELL_INC_INTERNAL_I_XML_PARSER_EVENT_HANDLER_HXX
21 #define INCLUDED_SHELL_INC_INTERNAL_I_XML_PARSER_EVENT_HANDLER_HXX
23 #include <string>
24 #include <map>
26 #ifdef _WIN32
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
34 // name-value container
35 typedef std::map<string_t, string_t> xml_tag_attribute_container_t;
38 class i_xml_parser_event_handler
40 public:
41 virtual ~i_xml_parser_event_handler() {};
43 virtual void start_element(
44 const string_t& raw_name,
45 const string_t& local_name,
46 const xml_tag_attribute_container_t& attributes) = 0;
48 virtual void end_element(
49 const string_t& raw_name,
50 const string_t& local_name) = 0;
52 virtual void characters(
53 const string_t& character) = 0;
55 virtual void ignore_whitespace(
56 const string_t& whitespaces) = 0;
58 virtual void comment(const string_t& comment) = 0;
61 #endif
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */