12345678910111213141516171819202122232425262728293031 |
- #ifndef AdUtils_h
- #define AdUtils_h
- #include "AdHeader.h"
- #include "AdUtilsInterstitial.h"
- #include "AdUtilsVideo.h"
- NS_AD_BEGIN
- class AdUtils : public Ref {
- public:
- AdUtils();
- ~AdUtils();
- static AdUtils* shared();
- void init();
- public:
- AdUtilsVideo* getVideoUtils() { return _adUtilsVideo; };
- AdUtilsInterstitial* getInterstitialUtils() { return _adUtilsInterstitial; }
- private:
- AdUtilsVideo* _adUtilsVideo=nullptr;
- AdUtilsInterstitial* _adUtilsInterstitial=nullptr;
- };
- NS_AD_END
- #endif /* AdUtils_h */
|