aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/ios/iOS UI Test/iOS UI Test/Application.mm
diff options
context:
space:
mode:
Diffstat (limited to 'example/ios/iOS UI Test/iOS UI Test/Application.mm')
-rw-r--r--example/ios/iOS UI Test/iOS UI Test/Application.mm20
1 files changed, 20 insertions, 0 deletions
diff --git a/example/ios/iOS UI Test/iOS UI Test/Application.mm b/example/ios/iOS UI Test/iOS UI Test/Application.mm
new file mode 100644
index 00000000..48185d5b
--- /dev/null
+++ b/example/ios/iOS UI Test/iOS UI Test/Application.mm
@@ -0,0 +1,20 @@
+//
+// Application.mm
+// iOS UI Test
+//
+// Created by Jonathan Willing on 4/8/13.
+// Copyright (c) 2013 AppJon. All rights reserved.
+//
+
+#import "Application.h"
+#import <MailCore/MailCore.h>
+
+@implementation Application
+
+- (void)sendEvent:(UIEvent *)event {
+ mailcore::AutoreleasePool *pool = new mailcore::AutoreleasePool();
+ [super sendEvent:event];
+ pool->release();
+}
+
+@end