|
Sierra Toolkit
Version of the Day
|
#include <Callback.hpp>
Public Types | |
| typedef void(T::* | F) () |
| Member function signature. | |
Public Member Functions | |
| Callback (T &t, F f) | |
| virtual | ~Callback () |
| virtual void | operator() () const |
| Member function operator() calls the member function on the object. More... | |
Class Callback ...
Definition at line 24 of file Callback.hpp.
|
inline |
Creates a new Callback instance.
| t | a T reference to the object. |
| f | a F pointer to member function to call. |
Definition at line 69 of file Callback.hpp.
|
inlinevirtual |
Destroys a Callback instance.
Definition at line 78 of file Callback.hpp.
|
inlinevirtual |
Member function operator() calls the member function on the object.
Definition at line 86 of file Callback.hpp.