aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/utils/MCOObjectWrapper.h
blob: 67cb45e17fd186af5a95f6999fd3f3bb89892379 (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