aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCNull.h
blob: 345b5fd77ec83be8092a278490ff8a48b263055b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  MCNull.h
//  hermes
//
//  Created by DINH Viêt Hoà on 4/9/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef __MAILCORE_MCNULL_H_
#define __MAILCORE_MCNULL_H_

#include <MailCore/MCObject.h>

namespace mailcore {
    
    class Null : public Object {
    public:
        static Null * null();
    };
    
}

#endif