co-maps/libs/indexer/categories_holder_loader.cpp
2025-11-22 13:58:55 +01: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;
}