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

#ifndef MAILCORE_NSVALUE_MCO_H

#define MAILCORE_NSVALUE_MCO_H

#import <Foundation/Foundation.h>

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

@interface NSValue (MCO)

#ifdef __cplusplus
+ (NSValue *) mco_valueWithMCValue:(mailcore::Value *)value;

- (mailcore::Value *) mco_mcValue;
#endif

@end

#endif