Library of Assembled Shared Sources
|
callback with 1 parameter1 and with returnvalue. More...
#include <callback_r_1.h>
Public Member Functions | |
CallbackR1 () | |
Default constructor, construct empty callback. | |
template<typename FunctionType> | |
CallbackR1 (FunctionType iFunction) | |
Construct function callback. | |
template<typename ObjectPtr, typename Method> | |
CallbackR1 (ObjectPtr iObject, Method iMethod) | |
Construct object/method callback. | |
CallbackR1 (const TSelf &iOther) | |
copy constructor | |
CallbackR1 (TSelf &&iOther) noexcept | |
move constructor | |
TSelf & | operator= (const TSelf &iOther) |
assignment operator | |
TSelf & | operator= (TSelf &&iOther) noexcept |
assignment operator | |
R | operator() (typename util::CallTraits< P1 >::TParam iP1) const |
THE operator. | |
void | reset () |
Reset to empty callback. | |
bool | isEmpty () const |
Returns true if no callback dispatcher is assigned to this object. | |
bool | operator! () const |
return this->isEmpty() | |
operator bool () const | |
return !this->isEmpty()) | |
void | swap (TSelf &iOther) |
Swaps the dispatcher of this callback with the dispatcher of another. | |
bool | operator== (const TSelf &iOther) const |
return true if two callbacks call the same function/method, NEEDS RTTI! | |
Related Symbols | |
(Note that these are not member symbols.) | |
template<typename R, typename P1> | |
bool | operator!= (const CallbackR1< R, P1 > &iA, const CallbackR1< R, P1 > &iB) |
return true if two callbacks are different | |
template<typename R, typename P1> | |
CallbackR1< R, P1 > | makeCallback (R(*iFunction)(P1)) |
make a CallbackR1 from a function | |
template<typename R, typename P1> | |
const CallbackR1< R, P1 > & | makeCallback (const CallbackR1< R, P1 > &iCallback) |
make a CallbackR1 from a function | |
template<typename ObjectPtr, typename Object, typename R, typename P1> | |
CallbackR1< R, P1 > | makeCallback (ObjectPtr iObject, R(Object::*iMethod)(P1)) |
make a CallbackR1 from a object and method | |
template<typename ObjectPtr, typename Object, typename R, typename P1> | |
CallbackR1< R, P1 > | makeCallback (ObjectPtr iObject, R(Object::*iMethod)(P1) const) |
make a CallbackR1 from a object and const method | |
callback with 1 parameter1 and with returnvalue.
It's a single object that can hold a reference to a free function or an object/(const) method pair. Once the callback is constructed, it works completely transparent. All it shows to the client is a function that takes 1 parameter(s) and gives a returnvalue.
Definition at line 97 of file callback_r_1.h.
|
inline |