aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCOperationCallback.h
blob: 66a50524b774bf8771490db8197aca25cd9c2fb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __MAILCORE_MCOPERATIONCALLBACK_H_

#define __MAILCORE_MCOPERATIONCALLBACK_H_

#ifdef __cplusplus

namespace mailcore {
    
    class Operation;
    
    class OperationCallback {
    public:
        virtual void operationFinished(Operation * op) {}
    };
    
}

#endif

#endif