Blame view

ios/CoreBlue.framework/Headers/Protocol.h 345 Bytes
0605edc71   alexYang   接入bluePay第三方支付dem...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  //
  //  Protocol.h
  //  BluePay
  //  define  the protocol for callback
  //  Created by guojianmin on 16/1/9.
  //  Copyright © 2016年 alvin. All rights reserved.
  //
  
  #ifndef Protocol_h
  #define Protocol_h
  #import <Foundation/Foundation.h>
  
  #endif /* Protocol_h */
      
  @protocol Protocol <NSObject>
  
  
  -(void) doTask:(NSMutableDictionary*)params;
  @end