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

#import <Cocoa/Cocoa.h>

@class MCTMsgListViewController;

@interface AppDelegate : NSObject <NSApplicationDelegate> {
    IBOutlet MCTMsgListViewController * _msgListViewController;
    IBOutlet NSWindow * _accountWindow;
}

- (IBAction) accountLogin:(id)sender;
- (IBAction) accountCancel:(id)sender;

@end