IAPTestCardViewDelegate.hpp 424 B

1234567891011121314151617181920212223
  1. //
  2. // IAPTestCardViewDelegate.hpp
  3. // demo
  4. //
  5. // Created by Red_mini on 2024/10/25.
  6. //
  7. #ifndef IAPTestCardViewDelegate_hpp
  8. #define IAPTestCardViewDelegate_hpp
  9. #include <stdio.h>
  10. #include "IAPCardView.hpp"
  11. class IAPTestCardViewDelegate : public IAPCardViewDelegate
  12. {
  13. public:
  14. virtual void onCardChanged(int currentPageIndex) override;
  15. IAPTestCardViewDelegate();
  16. };
  17. #endif /* IAPTestCardViewDelegate_hpp */