aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/smtp/MCSMTPProgressCallback.h
blob: dd1b6ec5fff4d876090488c073464263530462ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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