aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/nntp/MCONNTPGroupInfo.mm
blob: af6b9b9afd1d54943f0cc6b6a58401543b736845 (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
//
//  MCONNTPGroupInfo.m
//  mailcore2
//
//  Created by Robert Widmann on 8/13/14.
//  Copyright (c) 2014 MailCore. All rights reserved.
//

#import "MCONNTPGroupInfo.h"

#include "MCAsyncNNTP.h"
#include "MCNNTP.h"

#import "MCOUtils.h"

@implementation MCONNTPGroupInfo {
    mailcore::NNTPGroupInfo * _nativeInfo;
}

#define nativeType mailcore::NNTPGroupInfo

+ (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::NNTPGroupInfo * groupInfo = (mailcore::NNTPGroupInfo *) object;
    return [[[self alloc] initWithMCNNTPGroupInfo:groupInfo] autorelease];
}

- (mailcore::Object *) mco_mcObject
{
    return _nativeInfo;
}

- (NSString *) description
{
    return MCO_OBJC_BRIDGE_GET(description);
}

- (instancetype) initWithMCNNTPGroupInfo:(mailcore::NNTPGroupInfo *)info
{
    self = [super init];
    
    _nativeInfo = info;
    _nativeInfo->retain();
    
    return self;
}

- (void) dealloc
{
    MC_SAFE_RELEASE(_nativeInfo);
    [super dealloc];
}

MCO_OBJC_SYNTHESIZE_STRING(setName, name)
MCO_OBJC_SYNTHESIZE_SCALAR(unsigned int, unsigned int, setMessageCount, messageCount)

@end