libsigc++ 3.6.0
|
#include <sigc++/functors/ptr_fun.h>
Public Member Functions | |
pointer_functor ()=default | |
Constructs an invalid functor. | |
pointer_functor (function_type func) | |
Constructs a pointer_functor2 object that wraps an existing function. | |
T_return | operator() (type_trait_take_t< T_args >... a) const |
Execute the wrapped function. | |
Protected Attributes | |
function_type | func_ptr_ |
|
default |
Constructs an invalid functor.
|
inlineexplicit |
Constructs a pointer_functor2 object that wraps an existing function.
func | Pointer to function that will be invoked from operator()(). |
|
inline |
Execute the wrapped function.
a | Arguments to be passed on to the function. |
|
protected |