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

#define MAILCORE_MCSMTPPROGRESSCALLBACK_H

#ifdef __cplusplus

#include <MailCore/MCUtils.h>

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

#endif

#endif