/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
partners_api/yango_api.hpp
17 строк
517 B
Arsentiy Milchakov
[core][taxi] yango taxi is added
07 сен 2020, 19:35
07 сен 2020, 19:35
fb06901
Код
Авторство
О чём код?
#pragma once #include "partners_api/taxi_base.hpp" #include "partners_api/yandex_api.hpp" namespace taxi::yango { class Api : public yandex::Api { public: explicit Api(std::string const & baseUrl = yandex::kTaxiInfoUrl) : yandex::Api(baseUrl) {} /// Returns link which allows you to launch the Yandex app. RideRequestLinks GetRideRequestLinks(std::string const & productId, ms::LatLon const & from, ms::LatLon const & to) const override; }; } // namespace taxi::yango