35 lines
719 B
C++
35 lines
719 B
C++
#ifndef MAILCORE_IMAPMESSAGEPART_H
|
|
|
|
#define MAILCORE_IMAPMESSAGEPART_H
|
|
|
|
#include <MailCore/MCAbstractMessagePart.h>
|
|
|
|
#ifdef __cplusplus
|
|
|
|
namespace mailcore {
|
|
|
|
class IMAPMessagePart : public AbstractMessagePart {
|
|
public:
|
|
IMAPMessagePart();
|
|
virtual ~IMAPMessagePart();
|
|
|
|
virtual void setPartID(String * partID);
|
|
virtual String * partID();
|
|
|
|
public: // subclass behavior
|
|
IMAPMessagePart(IMAPMessagePart * other);
|
|
virtual Object * copy();
|
|
virtual HashMap * serializable();
|
|
virtual void importSerializable(HashMap * serializable);
|
|
|
|
private:
|
|
String * mPartID;
|
|
void init();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|