/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
partners_api/opentable_api.cpp
21 строка
447 B
Maxim Pimenov
Got rid of the old style std/ includes for several files, mostly in software_renderer/.
23 сен 2019, 17:03
23 сен 2019, 17:03
cf6549a
Код
Авторство
О чём код?
#include "partners_api/opentable_api.hpp" #include <sstream> #include "private.h" namespace { auto const kOpentableBaseUrl = "http://www.opentable.com/restaurant/profile/"; } // namespace namespace opentable { // static std::string Api::GetBookTableUrl(std::string const & restaurantId) { std::stringstream ss; ss << kOpentableBaseUrl << restaurantId << "?ref=" << OPENTABLE_AFFILATE_ID; return ss.str(); } } // namespace opentable