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

categories_holder_loader.cpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4210ea020c04621883f0a6e3a4f3d56d07b20134 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "categories_holder.hpp"

#include "platform/platform.hpp"

#include "defines.hpp"

CategoriesHolder const & GetDefaultCategories()
{
  static CategoriesHolder const instance(GetPlatform().GetReader(SEARCH_CATEGORIES_FILE_NAME));
  return instance;
}