Blame view

ios/CoreBlue.framework/Headers/Trace.h 342 Bytes
0605edc71   alexYang   接入bluePay第三方支付dem...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  //
  //  Trace.h
  //  CoreBluePay
  //
  //  Created by guojianmin on 16/2/24.
  //  Copyright © 2016年 alvin. All rights reserved.
  //
  
  #ifndef Trace_h
  #define Trace_h
  
  
  #endif /* Trace_h */
  
  
  @interface Trace : NSObject
  
  
  +(void) i:(NSString*) tag info:(NSString*) msg;
  
  +(void) e:(NSString*) tag info:(NSString*) msg;
  +(void) on;
  +(void) off;
  @end