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

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

namespace
{
vector<string> const kKeys = {"food",     "hotel",  "tourism", "wifi", "transport",     "fuel",
                              "parking",  "shop",   "atm",     "bank", "entertainment", "hospital",
                              "pharmacy", "police", "toilet",  "post"};
}  // namespace

namespace search
{
DisplayedCategories::DisplayedCategories(CategoriesHolder const & holder) : m_holder(holder) {}

// static
vector<string> const & DisplayedCategories::GetKeys() { return kKeys; }
}  // namespace search