1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| //
| // WAApwCore.h
| // WAApwImplUI
| //
| // Created by hank on 2017/3/21.
| // Copyright © 2017年 hank. All rights reserved.
| //
|
| #import <WASdkIntf/WASdkIntf.h>
|
| @class WACoreProxy;
| @class WAApwCore;
| #define WAApwLog(fmt,...) {\
| if([WACoreProxy isDebugMode]){\
| NSLog((@"WAApw LOG [(version %@) %s ]:" fmt), [WAApwCore getVersion],__FUNCTION__, ##__VA_ARGS__);\
| [WACoreProxy addLogWithString:[NSString stringWithFormat:(@"(version %@) %s ]:" fmt),[WAApwCore getVersion],__FUNCTION__, ##__VA_ARGS__]];\
| }\
| }
|
| @interface WAApwCore : WACore
|
| +(NSString*)getVersion;
|
| @end
|
|