aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/ios/iOS UI Test/iOS UI Test/main.mm
diff options
context:
space:
mode:
Diffstat (limited to 'example/ios/iOS UI Test/iOS UI Test/main.mm')
-rw-r--r--example/ios/iOS UI Test/iOS UI Test/main.mm19
1 files changed, 19 insertions, 0 deletions
diff --git a/example/ios/iOS UI Test/iOS UI Test/main.mm b/example/ios/iOS UI Test/iOS UI Test/main.mm
new file mode 100644
index 00000000..0ecfc348
--- /dev/null
+++ b/example/ios/iOS UI Test/iOS UI Test/main.mm
@@ -0,0 +1,19 @@
+//
+// main.mm
+// iOS UI Test
+//
+// Created by Jonathan Willing on 4/8/13.
+// Copyright (c) 2013 AppJon. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+#import "AppDelegate.h"
+#import "Application.h"
+#import <MailCore/MailCore.h>
+
+int main(int argc, char *argv[]) {
+ mailcore::AutoreleasePool *pool = new mailcore::AutoreleasePool();
+ return UIApplicationMain(argc, argv, NSStringFromClass([Application class]), NSStringFromClass([AppDelegate class]));
+ pool->release();
+}