lpw
2023-06-14 ed1e9e1695be27ade900ea5ad7a64c2c29096ba5
commit | author | age
eec5d6 1 //
L 2 //  WAQQCore.h
3 //  WAQQImpl
4 //
5 //  Created by LPW on 2020/3/9.
6 //  Copyright © 2020 LPW. All rights reserved.
7 //
8
9 #import <WASdkIntf/WASdkIntf.h>
10
11
12 @class WACoreProxy;
13 @class WAQQCore;
14
15 #define QQLog(fmt,...) {\
16 if([WACoreProxy isDebugMode]){\
17 NSLog((@"WASDK LOG [(version %@) %s ]:" fmt), [WAQQCore getVersion],__FUNCTION__, ##__VA_ARGS__);\
18 [WACoreProxy addLogWithString:[NSString stringWithFormat:(@"(version %@) %s ]:" fmt),[WAQQCore getVersion],__FUNCTION__, ##__VA_ARGS__]];\
19 }\
20 }
21
22
23
24 @interface WAQQCore : WACore
25
26
27 +(NSString*)getVersion;
28
29 @end
30