summary refs log tree commit diff stats
path: root/main.m
diff options
context:
space:
mode:
Diffstat (limited to 'main.m')
-rwxr-xr-xmain.m16
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
11int 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}