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

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

#include "std/string.hpp"

namespace search
{
enum class Mode
{
  Viewport,
  Everywhere,
  World
};

string DebugPrint(Mode mode);
}  // namespace search