EmailScheduler/MailCore.framework/Versions/A/Headers/MCNull.h
2014-09-13 17:13:32 -05:00

29 lines
367 B
C++

//
// 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>
#ifdef __cplusplus
namespace mailcore {
class Null : public Object {
public:
static Null * null();
};
}
#endif
#endif