aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/utils/NSSet+MCO.h
blob: 17bd1bf43c314f01feccbb8f5d57c32c45cc8d97 (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
//
//  NSSet+MCO.h
//  mailcore2
//
//  Created by Hoa V. DINH on 1/29/14.
//  Copyright (c) 2014 MailCore. All rights reserved.
//

#import <Foundation/Foundation.h>

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

@interface NSSet (MCO)

#ifdef __cplusplus
+ (NSSet *) mco_setWithMCSet:(mailcore::Set *)cppSet;

- (mailcore::Set *) mco_mcSet;
#endif

@end