File indexing completed on 2024-05-05 03:50:40

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2014 Calin Cruceru <crucerucalincristian@gmail.com>
0004 //
0005 
0006 #ifndef MARBLE_SCENEGRAPHICSTYPES_H
0007 #define MARBLE_SCENEGRAPHICSTYPES_H
0008 
0009 namespace Marble
0010 {
0011 
0012 /**
0013  * @brief: This namespace includes all available graphic item names a user can
0014  * interact with using the annotate plugin.
0015  */
0016 
0017 namespace SceneGraphicsTypes
0018 {
0019 
0020 extern const char SceneGraphicAreaAnnotation[];
0021 extern const char SceneGraphicGroundOverlay[];
0022 extern const char SceneGraphicTextAnnotation[];
0023 extern const char SceneGraphicPolylineAnnotation[];
0024 
0025 }
0026 
0027 }
0028 
0029 #endif
0030