Libosmium  2.20.0
Fast and flexible C++ library for working with OpenStreetMap data
handler.hpp
Go to the documentation of this file.
1#ifndef OSMIUM_HANDLER_HPP
2#define OSMIUM_HANDLER_HPP
3
4/*
5
6This file is part of Osmium (https://osmcode.org/libosmium).
7
8Copyright 2013-2023 Jochen Topf <jochen@topf.org> and others (see README).
9
10Boost Software License - Version 1.0 - August 17th, 2003
11
12Permission is hereby granted, free of charge, to any person or organization
13obtaining a copy of the software and accompanying documentation covered by
14this license (the "Software") to use, reproduce, display, distribute,
15execute, and transmit the Software, and to prepare derivative works of the
16Software, and to permit third-parties to whom the Software is furnished to
17do so, all subject to the following:
18
19The copyright notices in the Software and this entire statement, including
20the above license grant, this restriction and the following disclaimer,
21must be included in all copies of the Software, in whole or in part, and
22all derivative works of the Software, unless such copies or derivative
23works are solely in the form of machine-executable object code generated by
24a source language processor.
25
26THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
29SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
30FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
31ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32DEALINGS IN THE SOFTWARE.
33
34*/
35
36namespace osmium {
37
38 class Area;
39 class Changeset;
40 class ChangesetDiscussion;
41 class InnerRing;
42 class Node;
43 class OSMObject;
44 class OuterRing;
45 class Relation;
46 class RelationMemberList;
47 class TagList;
48 class Way;
49 class WayNodeList;
50
54 namespace handler {
55
71 class Handler {
72
73 public:
74
75 void osm_object(const osmium::OSMObject& /*osm_object*/) const noexcept {
76 }
77
78 void node(const osmium::Node& /*node*/) const noexcept {
79 }
80
81 void way(const osmium::Way& /*way*/) const noexcept {
82 }
83
84 void relation(const osmium::Relation& /*relation*/) const noexcept {
85 }
86
87 void area(const osmium::Area& /*area*/) const noexcept {
88 }
89
90 void changeset(const osmium::Changeset& /*changeset*/) const noexcept {
91 }
92
93 void tag_list(const osmium::TagList& /*tag_list*/) const noexcept {
94 }
95
96 void way_node_list(const osmium::WayNodeList& /*way_node_list*/) const noexcept {
97 }
98
99 void relation_member_list(const osmium::RelationMemberList& /*relation_member_list*/) const noexcept {
100 }
101
102 void outer_ring(const osmium::OuterRing& /*outer_ring*/) const noexcept {
103 }
104
105 void inner_ring(const osmium::InnerRing& /*inner_ring*/) const noexcept {
106 }
107
108 void changeset_discussion(const osmium::ChangesetDiscussion& /*changeset_discussion*/) const noexcept {
109 }
110
111 void flush() const noexcept {
112 }
113
114 }; // class Handler
115
116 } // namespace handler
117
118} // namespace osmium
119
120#endif // OSMIUM_HANDLER_HPP
Definition: area.hpp:125
Definition: changeset.hpp:130
An OSM Changeset, a group of changes made by a single user over a short period of time.
Definition: changeset.hpp:146
Definition: area.hpp:80
Definition: node.hpp:48
Definition: object.hpp:64
Definition: area.hpp:60
Definition: relation.hpp:147
Definition: relation.hpp:161
Definition: tag.hpp:119
Definition: way.hpp:55
Definition: way.hpp:72
Definition: handler.hpp:71
void inner_ring(const osmium::InnerRing &) const noexcept
Definition: handler.hpp:105
void changeset_discussion(const osmium::ChangesetDiscussion &) const noexcept
Definition: handler.hpp:108
void node(const osmium::Node &) const noexcept
Definition: handler.hpp:78
void way_node_list(const osmium::WayNodeList &) const noexcept
Definition: handler.hpp:96
void outer_ring(const osmium::OuterRing &) const noexcept
Definition: handler.hpp:102
void way(const osmium::Way &) const noexcept
Definition: handler.hpp:81
void relation_member_list(const osmium::RelationMemberList &) const noexcept
Definition: handler.hpp:99
void area(const osmium::Area &) const noexcept
Definition: handler.hpp:87
void changeset(const osmium::Changeset &) const noexcept
Definition: handler.hpp:90
void flush() const noexcept
Definition: handler.hpp:111
void osm_object(const osmium::OSMObject &) const noexcept
Definition: handler.hpp:75
void relation(const osmium::Relation &) const noexcept
Definition: handler.hpp:84
void tag_list(const osmium::TagList &) const noexcept
Definition: handler.hpp:93
Namespace for everything in the Osmium library.
Definition: assembler.hpp:53