Creates a void nullary function from a reference wrapper. More...
#include <function_objects.hpp>
Public Member Functions | |
NullaryFunctionReference (const ReferenceWrapper< FunctionObject > &wrapper) | |
Creates a NullaryFunction descendant from a reference wrapper. More... | |
void | operator() () |
This ensures any children objects are deleted correctly. More... | |
virtual | ~NullaryFunctionReference () |
Public Member Functions inherited from ecl::NullaryFunction< void > | |
virtual | ~NullaryFunction () |
Private Attributes | |
FunctionObject & | function_object |
Additional Inherited Members | |
Public Types inherited from ecl::NullaryFunction< void > | |
typedef void | result_type |
The result type. More... | |
Creates a void nullary function from a reference wrapper.
Takes a reference wrapper containing a nullary function (strictly by definition) object reference and creates a NullaryFunction descendant. This is a specialisation which caters to nullary function objects with void return type.
FunctionObject | : type of the function object to be referenced. |
Definition at line 981 of file function_objects.hpp.
|
inlineexplicit |
Creates a NullaryFunction descendant from a reference wrapper.
Creates a NullaryFunction descendant by reference (not copying).
wrapper | : the reference wrapper holding the nullary function object to be referenced. |
Definition at line 991 of file function_objects.hpp.
|
inlinevirtual |
Definition at line 994 of file function_objects.hpp.
|
inlinevirtual |
This ensures any children objects are deleted correctly.
The nullary function object call.
Redirects the call to the referenced nullary function object call.
Implements ecl::NullaryFunction< void >.
Definition at line 1001 of file function_objects.hpp.
|
private |
Definition at line 1004 of file function_objects.hpp.