aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/nntp/MCNNTPProgressCallback.h
blob: f863cc0c36d3f749a887254f894d2dce1ef7fddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef MAILCORE_MCNNTPPROGRESSCALLBACK_H

#define MAILCORE_MCNNTPPROGRESSCALLBACK_H

#ifdef __cplusplus

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

#endif

#endif