aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/nntp/MCNNTPProgressCallback.h
blob: dd615d04f425222db3c99b20ea7c956b395ca124 (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_MCNNTPPROGRESSCALLBACK_H

#define MAILCORE_MCNNTPPROGRESSCALLBACK_H

#ifdef __cplusplus

#include <MailCore/MCUtils.h>

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

#endif

#endif