KOSMIndoorMap

datasetmergebuffer.h
1/*
2 SPDX-FileCopyrightText: 2020 Volker Krause <vkrause@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#ifndef OSM_DATASETMERGEBUFFER_H
8#define OSM_DATASETMERGEBUFFER_H
9
10#include <kosm_export.h>
11
12#include "datatypes.h"
13
14namespace OSM {
15
16/** Holds OSM elements produced by a parser prior to merging into OSM::DataSet. */
17class KOSM_EXPORT DataSetMergeBuffer
18{
19public:
20 void clear();
21
22 std::vector<OSM::Node> nodes;
23 std::vector<OSM::Way> ways;
24 std::vector<OSM::Relation> relations;
25};
26
27}
28
29#endif
Holds OSM elements produced by a parser prior to merging into OSM::DataSet.
Low-level types and functions to work with raw OSM data as efficiently as possible.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:20:03 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.