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

#import <Cocoa/Cocoa.h>
#include <mailcore/mailcore.h>

@class MCTMsgViewController;

@interface MCTMsgListViewController : NSViewController {
    IBOutlet NSTableView * _tableView;
    IBOutlet MCTMsgViewController * _msgViewController;
    MCOIMAPSession * _session;
    MCOIMAPFetchMessagesOperation * _op;
    NSArray * _messages;
}

@end