aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/imap/MCIMAPMessagePart.h
blob: 03747ac04edc0350b54820622b5a1e13bf36c222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __MAILCORE_IMAPMESSAGEPART_H_

#define __MAILCORE_IMAPMESSAGEPART_H_

#include <mailcore/MCAbstractMessagePart.h>

#ifdef __cplusplus

namespace mailcore {
	
	class IMAPMessagePart : public AbstractMessagePart {
	public:
		IMAPMessagePart();
		virtual ~IMAPMessagePart();
        
    public: // subclass behavior
		IMAPMessagePart(IMAPMessagePart * other);
		virtual Object * copy();
	};
}

#endif

#endif