aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/imap/MCIMAPMultipart.h
blob: db46b58398a62b97416bbcc2ebfac4d4408a2e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __MAILCORE_MCIMAPMULTIPART_H

#define __MAILCORE_MCIMAPMULTIPART_H

#include <mailcore/MCAbstractMultipart.h>

namespace mailcore {
	
	class IMAPMultipart : public AbstractMultipart {
	private:
		
	public:
		IMAPMultipart();
		IMAPMultipart(IMAPMultipart * other);
		virtual ~IMAPMultipart();
		
		virtual Object * copy();
	};
}

#endif