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

mode.cpp « search - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59c7eb751b5d3ee0a7514e98af0c840ef989a5db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "search/mode.hpp"

namespace search
{
string DebugPrint(Mode mode)
{
  switch (mode)
  {
  case Mode::Viewport: return "Viewport";
  case Mode::Everywhere: return "Everywhere";
  case Mode::World: return "World";
  }
  return "Unknown";
}
}  // namespace search