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

mopub_ads.hpp « partners_api - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 003d36363284b7f3e1a835a3717ea619dd36feba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include "partners_api/ads_base.hpp"

#include <string>

namespace ads
{
// Class which matches feature types and mopub banner ids.
class Mopub : public Container
{
public:
  Mopub();

  // ContainerBase overrides:
  std::string GetBannerIdForOtherTypes() const override;

  static std::string InitializationBannerId();
};
}  // namespace ads