aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCOperationCallback.h
blob: 425b1e9959c1f18c3a3c28d1fb19dc9467ac649a (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_MCOPERATIONCALLBACK_H

#define MAILCORE_MCOPERATIONCALLBACK_H

#include <MailCore/MCUtils.h>

#ifdef __cplusplus

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

#endif

#endif