aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/utils/NSArray+MCO.h
blob: fd0cc6ad2d87b488b1f09d73c7497ef8a93bb45f (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
//
//  NSArray+MCO.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 1/29/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef MAILCORE_NSARRAY_MCO_H

#define MAILCORE_NSARRAY_MCO_H

#import <Foundation/Foundation.h>

#ifdef __cplusplus
namespace mailcore {
    class Array;
}
#endif

@interface NSArray (MCO)

#ifdef __cplusplus
+ (NSArray *) mco_arrayWithMCArray:(mailcore::Array *)array;

- (mailcore::Array *) mco_mcArray;
#endif

@end

#endif