blob: 2fd3401880b79bfeaba50a8b415ee078eb18755f (
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
|
//
// MCOObjectWrapper.h
// mailcore2
//
// Created by DINH Viêt Hoà on 1/25/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#ifndef __MAILCORE_MCOOBJECTWRAPPER_H_
#define __MAILCORE_MCOOBJECTWRAPPER_H_
#import <Foundation/Foundation.h>
#ifdef __cplusplus
namespace mailcore {
class Object;
}
#endif
@interface MCOObjectWrapper : NSObject
#ifdef __cplusplus
@property (nonatomic, assign) mailcore::Object * object;
+ (MCOObjectWrapper *) objectWrapperWithObject:(mailcore::Object *)object;
#endif
@end
#endif
|