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

#ifndef MAILCORE_MCOABSTRACTMULTIPART_H

#define MAILCORE_MCOABSTRACTMULTIPART_H

#import <Foundation/Foundation.h>
#import <MailCore/MCOAbstractPart.h>

@interface MCOAbstractMultipart : MCOAbstractPart

/** Returns the subparts of that multipart.*/
@property (nonatomic, copy) NSArray * /* MCOAbstractPart */ parts;

@end

#endif