aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPFolder.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/objc/imap/MCOIMAPFolder.h')
-rw-r--r--src/objc/imap/MCOIMAPFolder.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/objc/imap/MCOIMAPFolder.h b/src/objc/imap/MCOIMAPFolder.h
index 813303e2..03858fc5 100644
--- a/src/objc/imap/MCOIMAPFolder.h
+++ b/src/objc/imap/MCOIMAPFolder.h
@@ -10,13 +10,20 @@
#define __MAILCORE_MCOIMAPFOLDER_H_
+// This class implements an IMAP folder.
+
#import <Foundation/Foundation.h>
#import <MailCore/MCOConstants.h>
@interface MCOIMAPFolder : NSObject <NSCopying>
+// It's the path of the folder.
@property (nonatomic, copy) NSString * path;
+
+// It's the delimiter for each component of the path.
@property (nonatomic, assign) char delimiter;
+
+// It's the flags of the folder. See MCOIMAPFolderFlag.
@property (nonatomic, assign) MCOIMAPFolderFlag flags;
@end