EmailScheduler/MailCore.framework/Versions/A/Headers/MCIMAPMessagePart.h

35 lines
719 B
C
Raw Normal View History

2014-09-13 17:13:32 -05:00
#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