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

#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