/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
generator/postcode_points_builder.hpp
27 строк
849 B
tatiana-yan
[generator] Introduce PostcodePointsDatasetType.
19 дек 2019, 19:26
19 дек 2019, 19:26
f10ccdc
Код
Авторство
О чём код?
#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