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

#ifndef MAILCORE_NSDICTIONARY_MCO_H

#define MAILCORE_NSDICTIONARY_MCO_H

#import <Foundation/Foundation.h>

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

@interface NSDictionary (MCO)

#ifdef __cplusplus
+ (NSDictionary *) mco_dictionaryWithMCHashMap:(mailcore::HashMap *)hashmap;

- (mailcore::HashMap *) mco_mcHashMap;
#endif

@end

#endif