aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/rfc822/MCMessagePart.h
blob: 6dd5eb7f7620af83be866c84bb2043b3b5d619dd (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