tbx
0.7.5
|
Template to create a command that calls a member function. More...
#include <command.h>
Public Member Functions | |
CommandMethod (T *call, void(T::*method)()) | |
Construct the Command method for the given object and method on it. More... | |
virtual void | execute () |
Calls the method on the object given in the constructor. | |
![]() | |
virtual | ~Listener () |
Destroy the listener object. | |
Additional Inherited Members | |
![]() | |
Listener () | |
Construct the Listener object. | |
Template to create a command that calls a member function.
|
inline |
Construct the Command method for the given object and method on it.
call | The object the method will be called on |
method | The method on the object to call |