author | Jens Alfke <jens@mooseyard.com> |
Sun Feb 06 16:31:03 2011 -0800 (2011-02-06) | |
changeset 29 | 0b1c315ffc64 |
permissions | -rwxr-xr-x |
1 //
2 // main.m
3 // GGB-iPhone
4 //
5 // Created by Jens Alfke on 3/7/08.
6 // Copyright __MyCompanyName__ 2008. All rights reserved.
7 //
9 #import <UIKit/UIKit.h>
11 int main(int argc, char *argv[])
12 {
13 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
14 int retVal = UIApplicationMain(argc, argv, nil, @"GGB_iPhoneAppDelegate");
15 [pool release];
16 return retVal;
17 }