12345678910111213141516171819202122232425 |
- //
- // IAPDelegateImpl.hpp
- // demo
- //
- // Created by Red_mini on 2024/10/30.
- //
- #ifndef IAPDelegateImpl_hpp
- #define IAPDelegateImpl_hpp
- #include <stdio.h>
- #include "IAPDelegate.hpp"
- // 该类用于测试
- class IAPDelegateImpl : public IAPDelegate{
- public:
- static IAPDelegateImpl* createWith();
-
- // 用户成功购买通知
- virtual void onUserBuySuccess(std::map<std::string, string> buyInfo) override;
-
- };
- #endif /* IAPDelegateImpl_hpp */
|