27 #ifndef _CEGUIFreeFunctionSlot_h_
28 #define _CEGUIFreeFunctionSlot_h_
30 #include "CEGUI/SlotFunctorBase.h"
49 virtual bool operator()(
const EventArgs& args)
51 return d_function(args);
61 #endif // end of guard _CEGUIFreeFunctionSlot_h_
Base class used as the argument to all subscribers Event object.
Definition: EventArgs.h:49
Slot functor class that calls back via a free function pointer.
Definition: FreeFunctionSlot.h:39
Defines abstract interface which will be used when constructing various functor objects that bind slo...
Definition: SlotFunctorBase.h:43
bool( SlotFunction)(const EventArgs &)
Slot function type.
Definition: FreeFunctionSlot.h:43