31 lines
695 B
Objective-C
31 lines
695 B
Objective-C
//
|
|
// 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
|
|
|