Nullary function object for bound nullary member functions. More...
#include <function_objects.hpp>
Public Member Functions | |
BoundNullaryMemberFunction (R(C::*function)(), C &class_object) | |
Binds a unary member function and creates a nullary function object. More... | |
R | operator() () |
This ensures any children objects are deleted correctly. More... | |
virtual | ~BoundNullaryMemberFunction () |
Public Member Functions inherited from ecl::NullaryFunction< void > | |
virtual | ~NullaryFunction () |
Private Attributes | |
C & | member_class |
R(C::* | member_function )() |
Additional Inherited Members | |
Public Types inherited from ecl::NullaryFunction< void > | |
typedef void | result_type |
The result type. More... | |
Nullary function object for bound nullary member functions.
Binds the class instance for a nullary member function and uses this to construct a nullary function object.
Usage:
C | : the member function's class type. |
R | : the return type. |
Definition at line 592 of file function_objects.hpp.
|
inline |
Binds a unary member function and creates a nullary function object.
Accepts the function pointer and class instance, binds them and creates a nullary function object.
function | : the void member function. |
class_object | : the member function's class instance. |
Definition at line 604 of file function_objects.hpp.
|
inlinevirtual |
Definition at line 608 of file function_objects.hpp.
|
inlinevirtual |
This ensures any children objects are deleted correctly.
A nullary function object call.
Redirects the nullary function object call to the bound member function.
Implements ecl::NullaryFunction< void >.
Definition at line 617 of file function_objects.hpp.
|
private |
Definition at line 620 of file function_objects.hpp.
|
private |
Definition at line 621 of file function_objects.hpp.