/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
generator/cities_ids_builder.hpp
20 строк
845 B
Maxim Pimenov
Review fixes.
02 июл 2019, 18:51
02 июл 2019, 18:51
1dd37ac
Код
Авторство
О чём код?
#pragma once #include <string> namespace generator { // Takes the FeatureID <-> base::GeoObjectId bidirectional map for features // corresponding to cities from |osmToFeaturePath| and serializes it // as a section in the mwm file at |dataPath|. // For World.mwm returns true iff the section was successfully built. // For non-world mwms returns false. bool BuildCitiesIds(std::string const & dataPath, std::string const & osmToFeaturePath); // Takes the FeatureID <-> base::GeoObjectId bidirectional map for features // corresponding to cities from the (test) features metadata and serializes the map // as a section in the mwm file at |dataPath|. // For World.mwm returns true iff the section was successfully built. // For non-world mwms returns false. bool BuildCitiesIdsForTesting(std::string const & dataPath); } // namespace generator