File indexing completed on 2025-01-05 03:59:03
0001 /* 0002 SPDX-FileCopyrightText: 2007 Nikolas Zimmermann <zimmermann@kde.org> 0003 SPDX-FileCopyrightText: 2007 Torsten Rahn <rahn@kde.org> 0004 0005 SPDX-License-Identifier: LGPL-2.0-or-later 0006 */ 0007 0008 #ifndef MARBLE_DGML_AUXILLARYDICTIONARY_H 0009 #define MARBLE_DGML_AUXILLARYDICTIONARY_H 0010 0011 // Lists all known DGML 2.0 auxiliary strings 0012 0013 // This tags are compared with the backend attribute from the 0014 // <layer> tag in the .dgml file. 0015 // When the backend value is parsed, it is turned 0016 // tolower so if the values in this class are not lowercase 0017 // it wont see they are the same 0018 0019 namespace Marble 0020 { 0021 namespace dgml 0022 { 0023 extern const char dgmlValue_true[]; 0024 extern const char dgmlValue_on[]; 0025 extern const char dgmlValue_texture[]; 0026 extern const char dgmlValue_vector[]; 0027 extern const char dgmlValue_vectortile[]; 0028 extern const char dgmlValue_geodata[]; 0029 } 0030 } 0031 0032 #endif