aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/abstract/MCOAbstractMessagePart.h
blob: b5117481dad82960c5f36446ef4f78415df54d89 (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
28
29
30
//
//  MCOAbstractMessagePart.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 3/10/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef MAILCORE_MCOABSTRACTMESSAGEPART_H

#define MAILCORE_MCOABSTRACTMESSAGEPART_H

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

@class MCOMessageHeader;

@interface MCOAbstractMessagePart : MCOAbstractPart

// Returns the header of the embedded message.
@property (nonatomic, strong) MCOMessageHeader * header;

// Returns the main part of the embedded message. It can be MCOAbstractPart, MCOAbstractMultipart
// or a MCOAbstractMessagePart.
@property (nonatomic, strong) MCOAbstractPart * mainPart;

@end

#endif