LibreOffice Module shell (master) 1
i_xml_parser_event_handler.hxx
Go to the documentation of this file.
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 INCLUDED_SHELL_INC_INTERNAL_I_XML_PARSER_EVENT_HANDLER_HXX
21#define INCLUDED_SHELL_INC_INTERNAL_I_XML_PARSER_EVENT_HANDLER_HXX
22
23#include <string>
24#include <map>
25
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
33
34// name-value container
35typedef std::map<string_t, string_t> xml_tag_attribute_container_t;
36
37
39{
40public:
42
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;
47
48 virtual void end_element(
49 const string_t& raw_name,
50 const string_t& local_name) = 0;
51
52 virtual void characters(
53 const string_t& character) = 0;
54
55 virtual void ignore_whitespace(
56 const string_t& whitespaces) = 0;
57
58 virtual void comment(const string_t& comment) = 0;
59};
60
61#endif
62
63/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual void end_element(const string_t &raw_name, const string_t &local_name)=0
virtual void comment(const string_t &comment)=0
virtual void characters(const string_t &character)=0
virtual void start_element(const string_t &raw_name, const string_t &local_name, const xml_tag_attribute_container_t &attributes)=0
virtual void ignore_whitespace(const string_t &whitespaces)=0
std::string string_t
std::map< string_t, string_t > xml_tag_attribute_container_t