aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/nntp/MCNNTPOperationCallback.h
blob: f616661030f2c1f9a64c311b4988ef1e414d1795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
//  MCNNTPOperationCallback.h
//  mailcore2
//
//  Created by Robert Widmann on 8/13/14.
//  Copyright (c) 2014 MailCore. All rights reserved.
//

#ifndef MAILCORE_MCNNTPOPERATIONCALLBACK_H

#define MAILCORE_MCNNTPOPERATIONCALLBACK_H

#ifdef __cplusplus

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

#endif

#endif