blob: 484fc20520a9e5d09e7c76d5ebd40912b7416663 (
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
|