aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/ios/iOS UI Test/iOS UI Test/Application.m
blob: d9a6c292ae411ae09e56ab460d89850b0a66cfa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  Application.m
//  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];
	
}

@end