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

#define __MAILCORE_MCIMAPPROGRESSCALLBACK_H_

#ifdef __cplusplus

namespace mailcore {

	class IMAPSession;

	class IMAPProgressCallback {
	public:
		virtual void bodyProgress(IMAPSession * session, unsigned int current, unsigned int maximum) {};
		virtual void itemsProgress(IMAPSession * session, unsigned int current, unsigned int maximum) {};
	};
}

#endif

#endif