/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
storage/country_parent_getter.cpp
18 строк
517 B
tatiana-yan
[std] Use new include style for coding, fixes.
12 апр 2019, 12:56
12 апр 2019, 12:56
c198137
Код
Авторство
О чём код?
#include "storage/country_parent_getter.hpp" namespace storage { CountryParentGetter::CountryParentGetter(std::string const & countriesFile, std::string const & countriesDir) { if (countriesFile.empty()) m_storage = std::make_shared<Storage>(); else m_storage = std::make_shared<Storage>(countriesFile, countriesDir); } std::string CountryParentGetter::operator()(std::string const & id) const { return m_storage->GetParentIdFor(id); } } // namespace storage