aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/imap/MCIMAPMessagePart.h
diff options
context:
space:
mode:
authorGravatar DINH Viet Hoa <hoa@sprw.me>2013-01-21 15:06:46 -0800
committerGravatar DINH Viet Hoa <hoa@sprw.me>2013-01-21 15:06:46 -0800
commit119b654d35db873bb7dbc77e24649462eb1aa4e6 (patch)
treeae42d35a781f94d8fe6994963230b095a1b2340a /src/core/imap/MCIMAPMessagePart.h
parentd998016c04cb1e1dfc9fcf608639bfb5a4147439 (diff)
headers show public API first. cleanup.
Diffstat (limited to 'src/core/imap/MCIMAPMessagePart.h')
-rw-r--r--src/core/imap/MCIMAPMessagePart.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/core/imap/MCIMAPMessagePart.h b/src/core/imap/MCIMAPMessagePart.h
index 99991390..03747ac0 100644
--- a/src/core/imap/MCIMAPMessagePart.h
+++ b/src/core/imap/MCIMAPMessagePart.h
@@ -4,19 +4,21 @@
#include <mailcore/MCAbstractMessagePart.h>
+#ifdef __cplusplus
+
namespace mailcore {
class IMAPMessagePart : public AbstractMessagePart {
- private:
-
public:
IMAPMessagePart();
- IMAPMessagePart(IMAPMessagePart * other);
virtual ~IMAPMessagePart();
-
+
+ public: // subclass behavior
+ IMAPMessagePart(IMAPMessagePart * other);
virtual Object * copy();
};
}
+#endif
#endif