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