aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/pop/MCPOPProgressCallback.h
blob: 5a46b38e547747d2e6645c13e95eb15a85091242 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __MAILCORE_MCPOPPROGRESSCALLBACK_H_

#define __MAILCORE_MCPOPPROGRESSCALLBACK_H_

#ifdef __cplusplus

namespace mailcore {

	class POPSession;

	class POPProgressCallback {
	public:
		virtual void bodyProgress(POPSession * session, unsigned int current, unsigned int maximum) {};
	};
}

#endif

#endif