public
Description: An experimental iPhone app to stay connected with GitHub on the go.
Homepage:
Clone URL: git://github.com/sschroed/git-phone.git
git-phone / git_phone_Prefix.pch
100644 27 lines (22 sloc) 0.58 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// Prefix header for all source files of the 'git-phone' target in the 'git-phone' project
//
 
#ifdef __OBJC__
    #import <Foundation/Foundation.h>
    #import <UIKit/UIKit.h>
#endif
 
#import <JSON/JSON.h>
#import "Connector.h"
#import "Models.h"
 
// -----------------------------------------------------------------------------
#pragma mark -
#pragma mark Development Logging
 
#ifdef __DEBUG__
#define DevLog(a) NSLog(a)
#define DevLog2(a, b) NSLog(a, b)
#define DevLog3(a, b, c) NSLog(a, b, c)
#else
#define DevLog(a)
#define DevLog2(a, b)
#define DevLog3(a, b, c)
#endif