/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
map/onboarding.hpp
26 строк
350 B
Arsentiy Milchakov
[core][onboarding] tip data source is added
05 ноя 2019, 15:57
05 ноя 2019, 15:57
d3ee2ef
Код
Авторство
О чём код?
#pragma once #include <string> namespace onboarding { struct Tip { enum class Type { DiscoverCatalog, DownloadSamples, BuySubscription, Count }; Tip(Type type, std::string const & url) : m_type(type), m_url(url) {} Type m_type; std::string m_url; }; Tip GetTip(); bool CanShowTipButton(); } // namespace onboarding