aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPPart.h
blob: ea31e8a8ea7e76378678f2ddb08dcedb1bb6fb2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  MCOIMAPPart.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 3/23/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#import <mailcore/MCOAbstractPart.h>

#import <mailcore/MCOConstants.h>

#ifndef __MAILCORE_MCOIMAPABSTRACTPART_H_

#define __MAILCORE_MCOIMAPABSTRACTPART_H_

@interface MCOIMAPPart : MCOAbstractPart <NSCopying>

@property (nonatomic, copy) NSString * partID;
@property (nonatomic, nonatomic) unsigned int size;
@property (nonatomic, nonatomic) MCOEncoding encoding;

- (unsigned int) decodedSize;

@end

#endif