/samples/ProgrammaticMap/main.m

http://github.com/route-me/route-me · Objective C · 17 lines · 7 code · 3 blank · 7 comment · 0 complexity · 4448ecd6c0ffd82d2e8e22f57f74349b MD5 · raw file

  1. //
  2. // main.m
  3. // ProgrammaticMap
  4. //
  5. // Created by Hal Mueller on 3/25/09.
  6. // Copyright Route-Me Contributors 2009. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. int main(int argc, char *argv[]) {
  10. NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  11. int retVal = UIApplicationMain(argc, argv, nil, nil);
  12. [pool release];
  13. return retVal;
  14. }