EmailScheduler/MailCore.framework/Versions/A/Headers/MCOperationCallback.h
2014-09-13 17:13:32 -05:00

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