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:
authorConstantin Shalnev <c.shalnev@corp.mail.ru>2015-10-15 16:55:04 +0300
committerConstantin Shalnev <c.shalnev@corp.mail.ru>2015-10-16 10:26:43 +0300
commit7c40f044a5340a14b0f7c1ca3a4dff54f004d9b5 (patch)
tree827a55c0c08c1bd8aee791ccc5d8811b994f04f9 /indexer/map_style.hpp
parent450d03b7a917dfcea301bbd48ee6e30b908abe11 (diff)
Added debug print for MapStyle
Diffstat (limited to 'indexer/map_style.hpp')
-rw-r--r--indexer/map_style.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indexer/map_style.hpp b/indexer/map_style.hpp
index 72131bcaa0..98d224b05c 100644
--- a/indexer/map_style.hpp
+++ b/indexer/map_style.hpp
@@ -1,5 +1,7 @@
#pragma once
+#include "std/string.hpp"
+
enum MapStyle
{
MapStyleLight = 0,
@@ -7,3 +9,5 @@ enum MapStyle
MapStyleClear = 2
// Add new map style here
};
+
+string DebugPrint(MapStyle mapStyle);