/samples/MarkerMurder/MarkerMurder_Prefix.pch
http://github.com/route-me/route-me · Unknown · 20 lines · 14 code · 6 blank · 0 comment · 0 complexity · 4a1d67656122ee713fb5f5645e09707d MD5 · raw file
- //
- // Prefix header for all source files of the 'SampleApp' target in the 'SampleApp' project
- //
- #ifdef __OBJC__
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #if DEBUG
- #define RMLog(args...) NSLog( @"%@", [NSString stringWithFormat: args])
- #define LogMethod() NSLog(@"%s logged method call: -[%@ %s] (line %d)", _cmd, self, _cmd, __LINE__)
- #else
- #define RMLog(args...) // do nothing.
- #define LogMethod()
- #endif
- #endif