aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/mac/macExample/macExample/MCTApplication.mm
blob: f2c4c597b7c4582d023ae79fcdc55084e9e638c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  MCTApplication.m
//  macExample
//
//  Created by DINH Viêt Hoà on 4/3/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#import "MCTApplication.h"

#import <mailcore/mailcore.h>

@implementation MCTApplication

- (void) sendEvent:(NSEvent *)theEvent
{
    mailcore::AutoreleasePool * pool = new mailcore::AutoreleasePool();
    [super sendEvent:theEvent];
    pool->release();
}

@end