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: a4a536c52b562306a3b4e4428595358c5754bcac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <string>

namespace search
{
enum class Mode
{
  Everywhere,
  Viewport,
  Downloader,
  Bookmarks,
  Count
};

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