011-SDK框架之LYWSDKProtocolIOS.h

来源:互联网 发布:淘宝封店支付宝还能用 编辑:程序博客网 时间:2024/05/29 12:31
#ifndef LYWSDKProtocolIOS_h
#define LYWSDKProtocolIOS_h


#include "LYWSDKInterfaceProtocol.h"
#include "LYWSDKInterfaceIOS.h"


class LYWSDKProtocolIOS: public LYWSDKInterfaceProtocol
{
private:
    id<LYWSDKInterfaceIOS> lywSDKDispatcher;
    
protected:
    LYWSDKProtocolIOS();
    ~LYWSDKProtocolIOS();
    
    
public:
    static LYWSDKProtocolIOS* getInstance();
    
    virtual void initSDK(LYWSDKCallBackListener* listener, const char* funcName, const char* param);
    
    virtual void callFunctionWithParam(const char* funcName, const char* param);
    
    NSMutableDictionary* jParam2Dictionary(const char* jParam);
    
    const char* dictionary2jParam(NSMutableDictionary* dic);
};


#endif /* LYWSDKProtocolIOS_hpp */
原创粉丝点击