aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/imap/MCIMAPMessagePart.h
diff options
context:
space:
mode:
authorGravatar DINH Viet Hoa <hoa@sprw.me>2013-01-11 01:08:18 -0800
committerGravatar DINH Viet Hoa <hoa@sprw.me>2013-01-11 01:08:18 -0800
commit739b68a69682d80d8247d4465eae7b182acc9da0 (patch)
tree34c33738bc0761d30c13f7f9b88fdf0d5c8cb4a9 /src/core/imap/MCIMAPMessagePart.h
parentf83e0e9ba3da2b8887f849483506d5de8f1d2c54 (diff)
first commit
Diffstat (limited to 'src/core/imap/MCIMAPMessagePart.h')
-rw-r--r--src/core/imap/MCIMAPMessagePart.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/imap/MCIMAPMessagePart.h b/src/core/imap/MCIMAPMessagePart.h
new file mode 100644
index 00000000..37e12fea
--- /dev/null
+++ b/src/core/imap/MCIMAPMessagePart.h
@@ -0,0 +1,23 @@
+#ifndef __MAILCORE_IMAPMESSAGEPART_H_
+
+#define __MAILCORE_IMAPMESSAGEPART_H_
+
+#include <mailcore/MCAbstractMessagePart.h>
+
+namespace mailcore {
+
+ class IMAPMessagePart : public AbstractMessagePart {
+ private:
+
+ public:
+ IMAPMessagePart();
+ IMAPMessagePart(IMAPMessagePart * other);
+ virtual ~IMAPMessagePart();
+
+ //virtual String * className();
+ virtual Object * copy();
+ };
+}
+
+
+#endif