diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2016-11-22 12:18:27 +0100 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2016-11-22 20:58:51 +0100 |
commit | 9353fcbf4cde1f8ca2e0d30cabeb64aa3528682e (patch) | |
tree | df198d7b62588cdd66cfe55202f9a06ce29333b5 /include | |
parent | a71868fc8d68fec0b34988d90ef1165c0c87d1db (diff) | |
download | qtlocation-mapboxgl-9353fcbf4cde1f8ca2e0d30cabeb64aa3528682e.tar.gz |
[build] move default_styles to platform/default
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/util/default_styles.hpp | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/include/mbgl/util/default_styles.hpp b/include/mbgl/util/default_styles.hpp deleted file mode 100644 index eb7e034722..0000000000 --- a/include/mbgl/util/default_styles.hpp +++ /dev/null @@ -1,31 +0,0 @@ -#pragma once - -#include <vector> -#include <string> - -namespace mbgl { -namespace util { -namespace default_styles { - -struct DefaultStyle { - const char* url; - const char* name; -}; - -extern const DefaultStyle streets; -extern const DefaultStyle outdoors; -extern const DefaultStyle light; -extern const DefaultStyle dark; -extern const DefaultStyle satellite; -extern const DefaultStyle satelliteStreets; - -const DefaultStyle orderedStyles[] = { - streets, outdoors, light, dark, satellite, satelliteStreets, -}; -const size_t numOrderedStyles = sizeof(orderedStyles) / sizeof(DefaultStyle); - -static const unsigned currentVersion = 9; - -} // end namespace default_styles -} // end namespace util -} // end namespace mbgl |