public
Description: NatsuLiphone - The twitter client for iPhone / iPod touch
Homepage: http://iphone.natsulion.org
Clone URL: git://github.com/takuma104/ntlniph.git
ntlniph / ntlniph_Prefix.pch
100644 18 lines (14 sloc) 0.356 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// Prefix header for all source files of the 'ntlniph' target in the 'ntlniph' project
//
 
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
 
#ifdef DEBUG
# define LOG(...) NSLog(__VA_ARGS__)
# define LOG_CURRENT_METHOD NSLog(NSStringFromSelector(_cmd))
#else
# define LOG(...) ;
# define LOG_CURRENT_METHOD ;
#endif
 
#endif