aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/rfc822/MCMultipart.h
blob: f65e899319b9858b6a92d3cd32f461d6eb87aeb4 (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_MCMULTIPART_H

#define __MAILCORE_MCMULTIPART_H

#include <MailCore/MCBaseTypes.h>
#include <MailCore/MCAbstractMultipart.h>

#ifdef __cplusplus

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

#endif

#endif