22 lines
362 B
Objective-C
22 lines
362 B
Objective-C
//
|
|
// MCOMultipart.h
|
|
// mailcore2
|
|
//
|
|
// Created by DINH Viêt Hoà on 3/22/13.
|
|
// Copyright (c) 2013 MailCore. All rights reserved.
|
|
//
|
|
|
|
#ifndef MAILCORE_MCOMULTIPART_H
|
|
|
|
#define MAILCORE_MCOMULTIPART_H
|
|
|
|
#import <MailCore/MCOAbstractMultipart.h>
|
|
|
|
/** Multipart parsed from RFC 822 message data. */
|
|
|
|
@interface MCOMultipart : MCOAbstractMultipart
|
|
|
|
@end
|
|
|
|
#endif
|