ios version
[wl-mobile.git] / main.m
diff --git a/main.m b/main.m
new file mode 100644 (file)
index 0000000..f4289ab
--- /dev/null
+++ b/main.m
@@ -0,0 +1,17 @@
+//
+//  main.m
+//  wl-mobi
+//
+//  Created by FNP on 10/19/11.
+//  Copyright __MyCompanyName__ 2011. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+int main(int argc, char *argv[]) {
+    
+    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
+    int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate");
+    [pool release];
+    return retVal;
+}