Files
Quick-Cocos2dx-Community/quick/lib/quick-src/extra/store/CCStorePaymentTransactionWrapper.h
u0u0 db03f8c295 Fork from Cocos2d-lua 3.3 final.
Add new Lua Binding for spSkeletonData.
Integrate win32 Player.
Add "exact_fit" mode for display
2015-09-07 20:03:29 +08:00

33 lines
671 B
C++

#ifndef __CC_EXTENSION_CCSTORE_PAYMENT_TRANSACTION_WRAPPER_H_
#define __CC_EXTENSION_CCSTORE_PAYMENT_TRANSACTION_WRAPPER_H_
#include "cocos2dx_extra.h"
#include "cocos2d.h"
NS_CC_EXTRA_BEGIN
class StorePaymentTransactionWrapper
{
public:
static StorePaymentTransactionWrapper* createWithTransaction(void* transactionObj);
~StorePaymentTransactionWrapper(void);
void* getTransactionObj(void)
{
return m_transactionObj;
}
private:
StorePaymentTransactionWrapper(void)
: m_transactionObj(NULL)
{
}
void* m_transactionObj;
};
NS_CC_EXTRA_END
#endif // __CC_EXTENSION_CCSTORE_PAYMENT_TRANSACTION_WRAPPER_H_