24 #ifndef _CALLBACKABLE_H
25 #define _CALLBACKABLE_H
Interface class for a class which wants to be callback on a certain action.
Definition: callbackable.h:39
Callbackable()
Definition: callbackable.h:43
static const CallbackableType DEFAULT_CALLBACKABLE_TYPE
This is the default Callbackable type.
Definition: backcaller.h:51
unsigned long CallbackableType
Definition: backcaller.h:45
virtual ~Callbackable()
Definition: callbackable.h:45
virtual void doOnCallBack(BackCaller *source, BackCaller::CallbackableType type=BackCaller::DEFAULT_CALLBACKABLE_TYPE)=0
This method is invoked when a callback is done from the class where this class is for callback regist...
Class prototype which provides functions to handle callbackable classes.
Definition: backcaller.h:42