mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 21:13:35 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
18 lines
442 B
C++
18 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;
|
|
}
|