libsigc++
2.99.5
|
Adaptor that performs C-style casts on the parameters passed on to the functor. More...
#include <sigc++/adaptors/retype.h>
Public Member Functions | |
retype_functor (type_trait_take_t< T_functor > _A_functor) | |
Constructs a retype_functor object that performs C-style casts on the parameters passed on to the functor. More... | |
template<class... T_arg> | |
decltype(auto) | operator() (T_arg..._A_a) |
![]() | |
adapts (const T_functor& _A_functor) | |
Constructs an adaptor that wraps the passed functor. More... | |
Additional Inherited Members | |
![]() | |
adaptor_type | functor_ |
Adaptor that is invoked from operator()(). More... | |
Adaptor that performs C-style casts on the parameters passed on to the functor.
Use the convenience function sigc::retype() to create an instance of retype_functor.
The following template arguments are used:
|
inlineexplicit |
Constructs a retype_functor object that performs C-style casts on the parameters passed on to the functor.
_A_functor | Functor to invoke from operator()(). |
|
inline |