aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/pop/MCPOPOperationCallback.h
blob: 48491215f1e085c397c74fe62c5c32d404693b0d (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
//
//  MCPOPOperationCallback.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 1/16/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef mailcore2_MCPOPOperationCallback_h
#define mailcore2_MCPOPOperationCallback_h

#ifdef __cplusplus

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

#endif

#endif