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

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