File indexing completed on 2024-06-02 03:50:59

0001 /*
0002     SPDX-FileCopyrightText: 2007 Nikolas Zimmermann <zimmermann@kde.org>
0003     SPDX-FileCopyrightText: 2008 Torsten Rahn <tackat@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef MARBLE_DGML_LAYERTAGHANDLER_H
0009 #define MARBLE_DGML_LAYERTAGHANDLER_H
0010 
0011 #include "GeoTagHandler.h"
0012 
0013 namespace Marble
0014 {
0015 namespace dgml
0016 {
0017 
0018 class DgmlLayerTagHandler : public GeoTagHandler
0019 {
0020 public:
0021     GeoNode* parse(GeoParser&) const override;
0022 };
0023 
0024 }
0025 }
0026 
0027 #endif