aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/pop/MCPOPMessageInfo.h
blob: a70a3f80b4bf680292ab45ad4c0edaa0c2f196ff (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
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef __MAILCORE_MCPOPMESSAGEINFO_H_

#define __MAILCORE_MCPOPMESSAGEINFO_H_

#include <mailcore/MCBaseTypes.h>

namespace mailcore {

	class POPMessageInfo : public Object {
	private:
		unsigned int mIndex;
		unsigned int mSize;
		String * mUid;
		
		void init();
		
	public:
		POPMessageInfo();
		POPMessageInfo(POPMessageInfo * other);
		virtual ~POPMessageInfo();
		
		virtual String * description();
		virtual Object * copy();
		
		virtual void setIndex(unsigned int index);
		virtual unsigned int index();
		
		virtual void setSize(unsigned int size);
		virtual unsigned int size();
		
		virtual void setUid(String * uid);
		virtual String * uid();
	};

}

#endif