aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/imap/MCIMAPMultipart.h
blob: 9a768d0a472411330c16d63097c89b32942f315f (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_MCIMAPMULTIPART_H

#define __MAILCORE_MCIMAPMULTIPART_H

#include <mailcore/MCAbstractMultipart.h>

#ifdef __cplusplus

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

#endif

#endif