/samples/MapTestbed/main.m

http://github.com/route-me/route-me · Objective C · 14 lines · 7 code · 3 blank · 4 comment · 0 complexity · 6919493d5a3f3c5bb1d5ca6f7eaa3f1d MD5 · raw file

  1. //
  2. // main.m
  3. // MapTestbed : Diagnostic map
  4. //
  5. #import <UIKit/UIKit.h>
  6. int main(int argc, char *argv[]) {
  7. NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  8. int retVal = UIApplicationMain(argc, argv, nil, nil);
  9. [pool release];
  10. return retVal;
  11. }