AdUtilsInterstitial.h 540 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // AdUtilsInterstitial.h
  3. // Billiards
  4. //
  5. // Created by zhuge on 17/10/26.
  6. //
  7. //
  8. #ifndef AdUtilsInterstitial_h
  9. #define AdUtilsInterstitial_h
  10. #include "AdHeader.h"
  11. NS_AD_BEGIN
  12. class AdUtilsInterstitial : public Ref {
  13. public:
  14. AdUtilsInterstitial();
  15. ~AdUtilsInterstitial();
  16. CREATE_FUNC_NO_INIT(AdUtilsInterstitial);
  17. public:
  18. bool isReady(string pageName){
  19. return true;
  20. };
  21. void show(string pageName, const function<void()> &onAdClosed){};
  22. };
  23. NS_AD_END
  24. #endif /* AdUtilsInterstitial_h */