Libosmium  2.17.1
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 
6 This file is part of Osmium (https://osmcode.org/libosmium).
7 
8 Copyright 2013-2021 Jochen Topf <jochen@topf.org> and others (see README).
9 
10 Boost Software License - Version 1.0 - August 17th, 2003
11 
12 Permission is hereby granted, free of charge, to any person or organization
13 obtaining a copy of the software and accompanying documentation covered by
14 this license (the "Software") to use, reproduce, display, distribute,
15 execute, and transmit the Software, and to prepare derivative works of the
16 Software, and to permit third-parties to whom the Software is furnished to
17 do so, all subject to the following:
18 
19 The copyright notices in the Software and this entire statement, including
20 the above license grant, this restriction and the following disclaimer,
21 must be included in all copies of the Software, in whole or in part, and
22 all derivative works of the Software, unless such copies or derivative
23 works are solely in the form of machine-executable object code generated by
24 a source language processor.
25 
26 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
29 SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
30 FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
31 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32 DEALINGS IN THE SOFTWARE.
33 
34 */
35 
36 namespace 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:126
Definition: changeset.hpp:132
An OSM Changeset, a group of changes made by a single user over a short period of time.
Definition: changeset.hpp:148
Definition: area.hpp:81
Definition: node.hpp:48
Definition: object.hpp:64
Definition: area.hpp:61
Definition: relation.hpp:154
Definition: relation.hpp:168
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