axmol/plugin/plugins/nd91/include/IAPNd91.h

60 lines
1.9 KiB
C
Raw Normal View History

2013-04-07 16:58:26 +08:00
#ifndef __CCX_IAP_ND91_H__
#define __CCX_IAP_ND91_H__
#include "ProtocolIAP.h"
#include <map>
#include <string>
namespace cocos2d { namespace plugin {
class IAPNd91 : public ProtocolIAP
{
PLUGIN_REGISTER_DECL(IAPNd91)
public:
/**
@brief plugin initialization
*/
virtual bool init();
/**
@brief initialize the developer info
@param devInfo This parameter is the info of developer, must contains key:
Nd91AppId The app id of nd91
Nd91AppKey The app key of nd91
Nd91Orientation The orientation of your app(use value : portrait, landscape, auto)
default value is portrait
@warning Must invoke this interface before other interfaces.
And invoked only once.
*/
virtual void initDeveloperInfo(TDeveloperInfo devInfo);
/**
@brief pay for product
@param info The info of product, must contains key:
productName The name of product
productPrice The price of product(must can be parse to float)
productDesc The description of product
Nd91ProductId The product id of product for nd91
Nd91ProductCount The product number will buy(1--10000, default value 1)
Nd91OriginalPrice The original price of product(default value is same with productPrice)
@warning For different plugin, the parameter should have other keys to pay.
Look at the manual of plugins.
*/
virtual void payForProduct(TProductInfo info);
/**
@brief Set whether needs to output logs to console.
@param debug if true debug mode enabled, or debug mode disabled.
*/
virtual void setDebugMode(bool debug);
virtual const char* getPluginVersion() { return "v0.1.01"; };
virtual const char* getSDKVersion();
virtual ~IAPNd91();
};
}} // namespace cocos2d { namespace plugin {
#endif /* __CCX_IAP_ND91_H__ */