/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
platform/http_user_agent.hpp
21 строка
357 B
Maxim Pimenov
Got rid of the old style std/ includes for several files, mostly in map/ and platform/.
23 сен 2019, 13:25
23 сен 2019, 13:25
bfc0b02
Код
Авторство
О чём код?
#pragma once #include <string> namespace platform { class HttpUserAgent { public: HttpUserAgent(); std::string Get() const; std::string const & GetAppVersion() const { return m_appVersion; } operator std::string() const { return Get(); } private: std::string ExtractAppVersion() const; std::string m_appVersion; }; } // namespace platform