28 #ifndef _CEGUIFreeFunctionSlot_h_
29 #define _CEGUIFreeFunctionSlot_h_
31 #include "CEGUISlotFunctorBase.h"
50 virtual bool operator()(
const EventArgs& args)
52 return d_function(args);
62 #endif // end of guard _CEGUIFreeFunctionSlot_h_
Base class used as the argument to all subscribers Event object.
Definition: CEGUIEventArgs.h:52
Slot functor class that calls back via a free function pointer.
Definition: CEGUIFreeFunctionSlot.h:40
Defines abstract interface which will be used when constructing various functor objects that bind slo...
Definition: CEGUISlotFunctorBase.h:44
bool( SlotFunction)(const EventArgs &)
Slot function type.
Definition: CEGUIFreeFunctionSlot.h:44