CustomiOSApi  1.04
 All Classes Functions Enumerations Enumerator Pages
LibLog.h
1 //
2 // LibLog.h
3 // CustomiOSApi
4 //
5 // Created by CUSTOM on 05/07/13.
6 // Copyright (c) 2013 CUSTOM. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "CustomError.h"
11 
12 //Hide it in the documentation
13 // @cond PRIVATE
14 @interface LibLog : NSObject
15 {
16  @public
17 
18  @protected
19 
20  @private
21 
22 }
23 
24 #define MFNAMECLASS [NSString stringWithFormat:@"%s", __PRETTY_FUNCTION__]
25 
26 +(void) EnableLog:(Boolean)newenableLog;
27 +(void) LogInfo:(NSString*)strClassName :(NSString*)strFormat ,...;
28 +(void) LogInfoBuffer:(NSString*)strClassName :(NSString*)strDescription :(NSData*)data;
29 +(void) LogError:(NSString*)strClassName :(NSString*)strFormat ,...;
30 
31 @end