diff options
author | Starla Insigna <starla4444@gmail.com> | 2011-07-30 11:19:14 -0400 |
---|---|---|
committer | Starla Insigna <starla4444@gmail.com> | 2011-07-30 11:19:14 -0400 |
commit | 9cd57b731ab1c666d4a1cb725538fdc137763d12 (patch) | |
tree | 5bac45ae5157a1cb10c6e45500cbf72789917980 /main.m | |
download | cartcollect-9cd57b731ab1c666d4a1cb725538fdc137763d12.tar.gz cartcollect-9cd57b731ab1c666d4a1cb725538fdc137763d12.tar.bz2 cartcollect-9cd57b731ab1c666d4a1cb725538fdc137763d12.zip |
Initial commit (version 0.2.1)
Diffstat (limited to 'main.m')
-rwxr-xr-x | main.m | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/main.m b/main.m new file mode 100755 index 0000000..5a17ba6 --- /dev/null +++ b/main.m | |||
@@ -0,0 +1,16 @@ | |||
1 | // | ||
2 | // main.m | ||
3 | // Cart Collect | ||
4 | // | ||
5 | // Created by iD Student Account on 7/18/11. | ||
6 | // Copyright __MyCompanyName__ 2011. All rights reserved. | ||
7 | // | ||
8 | |||
9 | #import <UIKit/UIKit.h> | ||
10 | |||
11 | int main(int argc, char *argv[]) { | ||
12 | NSAutoreleasePool *pool = [NSAutoreleasePool new]; | ||
13 | int retVal = UIApplicationMain(argc, argv, nil, @"Cart_CollectAppDelegate"); | ||
14 | [pool release]; | ||
15 | return retVal; | ||
16 | } | ||