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

#define __MAILCORE_MCSMTPPROGRESSCALLBACK_H_

#ifdef __cplusplus

namespace mailcore {

	class SMTPSession;

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

#endif

#endif