summaryrefslogtreecommitdiffstats
path: root/main.m
diff options
context:
space:
mode:
Diffstat (limited to 'main.m')
-rw-r--r--main.m17
1 files changed, 17 insertions, 0 deletions
diff --git a/main.m b/main.m
new file mode 100644
index 0000000..e5fe93a
--- /dev/null
+++ b/main.m
@@ -0,0 +1,17 @@
+//
+// main.m
+// PicCast
+//
+// Created by Matthew Handler on 4/15/11.
+// Copyright 2011 Earl Industries. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+int main(int argc, char *argv[]) {
+ NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
+ int retVal = UIApplicationMain(argc, argv, nil, nil);
+ [pool release];
+ return retVal;
+}
+