aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/mac/macExample/macExample/MCTMsgViewController.h
diff options
context:
space:
mode:
Diffstat (limited to 'example/mac/macExample/macExample/MCTMsgViewController.h')
-rw-r--r--example/mac/macExample/macExample/MCTMsgViewController.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/example/mac/macExample/macExample/MCTMsgViewController.h b/example/mac/macExample/macExample/MCTMsgViewController.h
new file mode 100644
index 00000000..a7bc0168
--- /dev/null
+++ b/example/mac/macExample/macExample/MCTMsgViewController.h
@@ -0,0 +1,33 @@
+//
+// MCTMsgViewController.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 MCOMessageView;
+@class MCOIMAPAsyncSession;
+@class MCOMAPMessage;
+
+@interface MCTMsgViewController : NSViewController {
+ IBOutlet MCOMessageView * _messageView;
+ NSMutableDictionary * _storage;
+ NSMutableSet * _pending;
+ NSMutableArray * _ops;
+ MCOIMAPSession * _session;
+ MCOIMAPMessage * _message;
+ NSMutableDictionary * _callbacks;
+ NSString * _folder;
+}
+
+@property (nonatomic, copy) NSString * folder;
+
+@property (nonatomic, strong) MCOIMAPSession * session;
+@property (nonatomic, strong) MCOIMAPMessage * message;
+
+@end