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

27 lines
460 B
C++

#ifndef MAILCORE_MCMESSAGEPART_H
#define MAILCORE_MCMESSAGEPART_H
#include <MailCore/MCBaseTypes.h>
#include <MailCore/MCAbstractMessagePart.h>
#ifdef __cplusplus
namespace mailcore {
class MessagePart : public AbstractMessagePart {
public:
MessagePart();
virtual ~MessagePart();
public: // subclass behavior
MessagePart(MessagePart * other);
virtual Object * copy();
};
}
#endif
#endif