aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/pop/MCPOPProgressCallback.h
blob: cdee93325ea4de47aa3f2dfbe313a71f60fd0331 (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_MCPOPPROGRESSCALLBACK_H

#define MAILCORE_MCPOPPROGRESSCALLBACK_H

#ifdef __cplusplus

#include <MailCore/MCUtils.h>

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

#endif

#endif