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

map_style.cpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a712a518da52094a2abab8d7e39aa03cdc787d9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "indexer/map_style.hpp"

#include "base/assert.hpp"

MapStyle const kDefaultMapStyle = MapStyleClear;

string DebugPrint(MapStyle mapStyle)
{
  switch (mapStyle)
  {
  case MapStyleLight:
    return "MapStyleLight";
  case MapStyleDark:
    return "MapStyleDark";
  case MapStyleClear:
    return "MapStyleClear";
  case MapStyleMerged:
    return "MapStyleMerged";

  case MapStyleCount:
    break;
  }
  ASSERT(false, ());
  return string();
}