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