This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/indexer/categories_holder_loader.cpp
2018-09-18 14:43:53 +03:00

17 lines
442 B
C++

#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;
}
CategoriesHolder const & GetDefaultCuisineCategories()
{
static CategoriesHolder const instance(GetPlatform().GetReader(SEARCH_CUISINE_CATEGORIES_FILE_NAME));
return instance;
}