blob: 55a4e1b65f028ac2e651e00980a05f6be9230b85 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
//
// MCOPOPMessageInfo.m
// mailcore2
//
// Created by DINH Viêt Hoà on 3/30/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#import "MCOPOPMessageInfo.h"
#include "MCAsyncPOP.h"
#include "MCPOP.h"
#import "MCOUtils.h"
@implementation MCOPOPMessageInfo {
mailcore::POPMessageInfo * _nativeInfo;
}
#define nativeType mailcore::POPMessageInfo
+ (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::POPMessageInfo * folder = (mailcore::POPMessageInfo *) object;
return [[[self alloc] initWithMCPOPMessageInfo:folder] autorelease];
}
- (mailcore::Object *) mco_mcObject
{
return _nativeInfo;
}
- (NSString *) description
{
return MCO_OBJC_BRIDGE_GET(description);
}
- (id) initWithMCPOPMessageInfo:(mailcore::POPMessageInfo *)info
{
self = [super init];
_nativeInfo = info;
_nativeInfo->retain();
return self;
}
- (void) dealloc
{
MC_SAFE_RELEASE(_nativeInfo);
[super dealloc];
}
MCO_OBJC_SYNTHESIZE_SCALAR(unsigned int, unsigned int, setIndex, index)
MCO_OBJC_SYNTHESIZE_SCALAR(unsigned int, unsigned int, setSize, size)
MCO_OBJC_SYNTHESIZE_STRING(setUid, uid)
@end
|