File indexing completed on 2025-01-05 03:59:03

0001 /*
0002     SPDX-FileCopyrightText: 2007 Nikolas Zimmermann <zimmermann@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "DgmlAuxillaryDictionary.h"
0008 
0009 // One static list of all auxiliary strings, to avoid string comparisons all-over-the-place
0010 
0011 // This tags are compared with the backend attribute from the
0012 // <layer> tag in the .dgml file.
0013 // When the backend value is parsed, it is turned
0014 // tolower so if the values in this class are not lowercase
0015 // it wont see they are the same
0016 
0017 namespace Marble
0018 {
0019 namespace dgml
0020 {
0021 const char dgmlValue_true[] = "true";
0022 const char dgmlValue_on[] = "on";
0023 const char dgmlValue_texture[] = "texture";
0024 const char dgmlValue_vector[] = "vector";
0025 const char dgmlValue_vectortile[] = "vectortile";
0026 const char dgmlValue_geodata[] = "geodata";
0027 }
0028 }