/
renath
/
organicmaps
Обзор
Документация
Войти
/
renath
/
organicmaps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
generator/postcode_points_builder.hpp
25 строк
785 B
Alexander Borsuk
clang-format
24 июл 2025, 15:48
24 июл 2025, 15:48
15b66d5
Код
Авторство
О чём код?
#pragma once #include <string> namespace storage { class CountryInfoGetter; } namespace indexer { enum class PostcodePointsDatasetType { UK, US }; // Builds postcodes section with external postcodes data and writes it to the mwm file. bool BuildPostcodePoints(std::string const & path, std::string const & country, PostcodePointsDatasetType type, std::string const & datasetPath, bool forceRebuild); // Exposed for testing. bool BuildPostcodePointsWithInfoGetter(std::string const & path, std::string const & country, PostcodePointsDatasetType type, std::string const & datasetPath, bool forceRebuild, storage::CountryInfoGetter const & infoGetter); } // namespace indexer