12345678910111213141516171819202122232425262728293031323334 |
- //
- // AdUtilsInterstitial.h
- // Billiards
- //
- // Created by zhuge on 17/10/26.
- //
- //
- #ifndef AdUtilsInterstitial_h
- #define AdUtilsInterstitial_h
- #include "AdHeader.h"
- NS_AD_BEGIN
- class AdUtilsInterstitial : public Ref {
- public:
- AdUtilsInterstitial();
- ~AdUtilsInterstitial();
- CREATE_FUNC_NO_INIT(AdUtilsInterstitial);
-
- public:
-
- bool isReady(string pageName){
- return true;
- };
- void show(string pageName, const function<void()> &onAdClosed){};
-
- };
- NS_AD_END
- #endif /* AdUtilsInterstitial_h */
|