aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/rfc822/MCOMultipart.mm
blob: a02665031c2d33890396c8c9453bd89f5c342c94 (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
31
//
//  MCOMultipart.m
//  mailcore2
//
//  Created by DINH Viêt Hoà on 3/22/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#import "MCOMultipart.h"

#include "MCRFC822.h"

#import "NSObject+MCO.h"
#import "MCOAbstractPart+Private.h"

@implementation MCOMultipart

#define nativeType mailcore::Multipart

+ (void) initialize
{
    MCORegisterClass(self, &typeid(nativeType));
}

+ (id) mco_objectWithMCObject:(mailcore::Object *)object
{
    mailcore::Attachment * attachment = (mailcore::Attachment *) object;
    return [[[self alloc] initWithMCPart:attachment] autorelease];
}

@end