/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
map/taxi_delegate.hpp
31 строка
702 B
Maxim Pimenov
[storage] Removed the T prefix from type aliases and type names.
13 фев 2019, 14:58
13 фев 2019, 14:58
b1bec1c
Код
Авторство
О чём код?
#pragma once #include "partners_api/taxi_engine.hpp" #include "storage/storage_defines.hpp" namespace storage { class Storage; class CountryInfoGetter; } namespace search { class CityFinder; } class TaxiDelegate : public taxi::Delegate { public: TaxiDelegate(storage::Storage const & st, storage::CountryInfoGetter const & ig, search::CityFinder & cf); storage::CountriesVec GetCountryIds(m2::PointD const & point) override; std::string GetCityName(m2::PointD const & point) override; storage::CountryId GetMwmId(m2::PointD const & point) override; private: storage::Storage const & m_storage; storage::CountryInfoGetter const & m_infoGetter; search::CityFinder & m_cityFinder; };