blob: 827636b38ed16b899a4b3ee4f14295d0c1670949 (
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
32
33
34
35
36
37
38
39
40
41
|
//
// MCOIMAPMessagePart.m
// mailcore2
//
// Created by DINH Viêt Hoà on 3/23/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#import "MCOIMAPMessagePart.h"
#include "MCIMAP.h"
#import "MCOAbstractPart+Private.h"
#import "MCOUtils.h"
@implementation MCOIMAPMessagePart
#define nativeType mailcore::IMAPMessagePart
+ (void) load
{
MCORegisterClass(self, &typeid(nativeType));
}
- (id) copyWithZone:(NSZone *)zone
{
nativeType * nativeObject = (nativeType *) [self mco_mcObject]->copy();
id result = [[self class] mco_objectWithMCObject:nativeObject];
MC_SAFE_RELEASE(nativeObject);
return [result retain];
}
+ (NSObject *) mco_objectWithMCObject:(mailcore::Object *)object
{
mailcore::IMAPMessagePart * part = (mailcore::IMAPMessagePart *) object;
return [[[self alloc] initWithMCPart:part] autorelease];
}
MCO_OBJC_SYNTHESIZE_STRING(setPartID, partID)
@end
|