EmailScheduler/MailCore.framework/Versions/A/Headers/MCOperationCallback.h

21 lines
282 B
C
Raw Normal View History

2014-09-13 17:13:32 -05:00
#ifndef MAILCORE_MCOPERATIONCALLBACK_H
#define MAILCORE_MCOPERATIONCALLBACK_H
#ifdef __cplusplus
namespace mailcore {
class Operation;
class OperationCallback {
public:
virtual void operationFinished(Operation * op) {}
};
}
#endif
#endif