From 23b0f6f864e2a02e71c841888ef6412154cbb67e Mon Sep 17 00:00:00 2001 From: Patrick Brosi Date: Wed, 8 Jan 2025 15:23:45 +0100 Subject: [PATCH] add missing file --- include/osm2rdf/osm/Generic.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 include/osm2rdf/osm/Generic.h diff --git a/include/osm2rdf/osm/Generic.h b/include/osm2rdf/osm/Generic.h new file mode 100644 index 0000000..40cb252 --- /dev/null +++ b/include/osm2rdf/osm/Generic.h @@ -0,0 +1,29 @@ +// Copyright 2023, University of Freiburg +// Authors: Axel Lehmann . + +// This file is part of osm2rdf. +// +// osm2rdf is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// osm2rdf is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with osm2rdf. If not, see . + +#ifndef OSM2RDF_OSM_GENERIC_H +#define OSM2RDF_OSM_GENERIC_H + +namespace osm2rdf::osm::generic { + +typedef uint32_t changeset_id_t; +typedef uint8_t version_t; + +} // namespace osm2rdf::osm::generic + +#endif // OSM2RDF_OSM_GENERIC_H