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