Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2017-01-11 13:50:51 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2017-01-11 14:50:27 +0300
commita9b6e4213d2a14d6d703b73a65db5c69181d203d (patch)
treeb0d97b68b8579b55775ff1f1d3f6ada67b0e1996 /indexer/map_style.hpp
parentf861910c88efb6690e89b35001c879b18cc3ec53 (diff)
Removed legacy style from code, scripts and projects
Diffstat (limited to 'indexer/map_style.hpp')
-rw-r--r--indexer/map_style.hpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/indexer/map_style.hpp b/indexer/map_style.hpp
index a2ac4a008a..6258a976ff 100644
--- a/indexer/map_style.hpp
+++ b/indexer/map_style.hpp
@@ -1,13 +1,12 @@
#pragma once
-#include "std/string.hpp"
+#include <string>
enum MapStyle
{
- MapStyleLight = 0, //< The first must be 0
+ MapStyleClear = 0,
MapStyleDark = 1,
- MapStyleClear = 2,
- MapStyleMerged = 3,
+ MapStyleMerged = 2,
// Add new map style here
// Specifies number of MapStyle enum values, must be last
@@ -16,4 +15,6 @@ enum MapStyle
extern MapStyle const kDefaultMapStyle;
-string DebugPrint(MapStyle mapStyle);
+extern MapStyle MapStyleFromSettings(std::string const & str);
+extern std::string MapStyleToString(MapStyle mapStyle);
+extern std::string DebugPrint(MapStyle mapStyle);