Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2017-04-14 11:41:20 +0300
committerIlya Grechuhin <i.grechuhin@gmail.com>2017-04-14 13:18:58 +0300
commit5c9e8a2a476eb03f4c2c57e1235e2e616a7f8a10 (patch)
tree5af54a1008f504f5f0416c071ad1a5654926493a /partners_api/ads_base.hpp
parente03dd42e7418e4831ebd6e2c2353019a8f6804c1 (diff)
banners in search core
Diffstat (limited to 'partners_api/ads_base.hpp')
-rw-r--r--partners_api/ads_base.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/partners_api/ads_base.hpp b/partners_api/ads_base.hpp
index a1984e61c0..7043fec626 100644
--- a/partners_api/ads_base.hpp
+++ b/partners_api/ads_base.hpp
@@ -25,6 +25,8 @@ public:
storage::TCountryId const & countryId) const = 0;
virtual std::string GetBannerId(feature::TypesHolder const & types,
storage::TCountryId const & countryId) const = 0;
+ virtual bool HasSearchBanner() const = 0;
+ virtual std::string GetSearchBannerId() const = 0;
virtual std::string GetBannerIdForOtherTypes() const = 0;
};
@@ -39,6 +41,8 @@ public:
storage::TCountryId const & countryId) const override;
std::string GetBannerId(feature::TypesHolder const & types,
storage::TCountryId const & countryId) const override;
+ bool HasSearchBanner() const override;
+ std::string GetSearchBannerId() const override;
std::string GetBannerIdForOtherTypes() const override;
protected: