27 lines
460 B
C++
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
|