aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/rfc822/MCMessagePart.h
blob: c4f80551ab3883b4db3e25089d9f4fef312f7b2a (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
25
#ifndef __MAILCORE_MCMESSAGEPART_H_

#define __MAILCORE_MCMESSAGEPART_H_

#include <mailcore/MCBaseTypes.h>
#include <mailcore/MCAbstractMessagePart.h>

#ifdef __cplusplus

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

#endif

#endif