21 lines
282 B
C++
21 lines
282 B
C++
#ifndef MAILCORE_MCOPERATIONCALLBACK_H
|
|
|
|
#define MAILCORE_MCOPERATIONCALLBACK_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
namespace mailcore {
|
|
|
|
class Operation;
|
|
|
|
class OperationCallback {
|
|
public:
|
|
virtual void operationFinished(Operation * op) {}
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|