aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPSession.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/objc/imap/MCOIMAPSession.h')
-rw-r--r--src/objc/imap/MCOIMAPSession.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/objc/imap/MCOIMAPSession.h b/src/objc/imap/MCOIMAPSession.h
index 88977ded..2e0ab3d2 100644
--- a/src/objc/imap/MCOIMAPSession.h
+++ b/src/objc/imap/MCOIMAPSession.h
@@ -6,12 +6,16 @@
// Copyright (c) 2013 MailCore. All rights reserved.
//
+#ifndef __MAILCORE_MCOIMAPSESSION_H_
+
+#define __MAILCORE_MCOIMAPSESSION_H_
+
#import <Foundation/Foundation.h>
#import <mailcore/MCOConstants.h>
#import <mailcore/MCOOperation.h>
-@class MCOCheckAccountOperation;
-@class MCOFetchFoldersOperation;
+@class MCOIMAPCheckAccountOperation;
+@class MCOIMAPFetchFoldersOperation;
@interface MCOIMAPSession : NSObject
@property (nonatomic, strong) NSString *hostname;
@@ -26,6 +30,8 @@
@property (nonatomic, assign, getter=isVoIPEnabled) BOOL VoIPEnabled;
@property (nonatomic, strong) NSString *delimiter;
-- (MCOCheckAccountOperation *)checkAccountOperation;
-- (MCOFetchFoldersOperation *)fetchAllFoldersOperation;
+- (MCOIMAPCheckAccountOperation *)checkAccountOperation;
+- (MCOIMAPFetchFoldersOperation *)fetchAllFoldersOperation;
@end
+
+#endif