File indexing completed on 2024-06-02 03:51:04

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2015 Marius-Valeriu Stanciu <stanciumarius94@gmail.com>
0004 //
0005 
0006 #ifndef KMLNDTAGHANDLER_H
0007 #define KMLNDTAGHANDLER_H
0008 
0009 #include "GeoTagHandler.h"
0010 
0011 namespace Marble
0012 {
0013 
0014 namespace kml
0015 {
0016 
0017 class KmlndTagHandler : public GeoTagHandler
0018 {
0019 public:
0020     GeoNode* parse( GeoParser& ) const override;
0021 };
0022 
0023 }
0024 }
0025 
0026 #endif
0027