library of assembled shared sources |
http://lass.cocamware.com |
#include <callback_r_10.h>
Public Types | |
typedef CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 > | TSelf |
typedef SharedPtr < impl::DispatcherR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 > > | TDispatcherPtr |
Public Member Functions | |
CallbackR10 () | |
Default constructor, construct empty callback. | |
template<typename FunctionType > | |
CallbackR10 (FunctionType iFunction) | |
Construct function callback. | |
template<typename ObjectPtr , typename Method > | |
CallbackR10 (ObjectPtr iObject, Method iMethod) | |
Construct object/method callback. | |
CallbackR10 (const TSelf &iOther) | |
copy constructor | |
template<typename Other > | |
TSelf & | operator= (const Other &iOther) |
assignment operator | |
R | operator() (typename util::CallTraits< P1 >::TParam iP1, typename util::CallTraits< P2 >::TParam iP2, typename util::CallTraits< P3 >::TParam iP3, typename util::CallTraits< P4 >::TParam iP4, typename util::CallTraits< P5 >::TParam iP5, typename util::CallTraits< P6 >::TParam iP6, typename util::CallTraits< P7 >::TParam iP7, typename util::CallTraits< P8 >::TParam iP8, typename util::CallTraits< P9 >::TParam iP9, typename util::CallTraits< P10 >::TParam iP10) 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 num::SafeBool () const | |
return !this->isEmpty()) | |
void | swap (TSelf &iOther) |
Swaps the dispatcher of this callback with the dispatcher of another. | |
Private Attributes | |
TDispatcherPtr | dispatcher_ |
Related Functions | |
(Note that these are not member functions.) | |
template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 > | |
CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 > | makeCallback (R(*iFunction)(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10)) |
make a CallbackR10 from a function | |
template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 > | |
const CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 > & | makeCallback (const CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 > &iCallback) |
make a CallbackR10 from a function | |
template<typename ObjectPtr , typename Object , typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 > | |
CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 > | makeCallback (ObjectPtr iObject, R(Object::*iMethod)(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10)) |
make a CallbackR10 from a object and method |
Definition at line 97 of file callback_r_10.h.
typedef CallbackR10<R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10> lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::TSelf |
Definition at line 101 of file callback_r_10.h.
typedef SharedPtr< impl::DispatcherR10<R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10> > lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::TDispatcherPtr |
Definition at line 102 of file callback_r_10.h.
lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::CallbackR10 | ( | ) | [inline] |
lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::CallbackR10 | ( | FunctionType | iFunction | ) | [inline] |
lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::CallbackR10 | ( | ObjectPtr | iObject, | |
Method | iMethod | |||
) | [inline] |
lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::CallbackR10 | ( | const TSelf & | iOther | ) | [inline] |
TSelf& lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::operator= | ( | const Other & | iOther | ) | [inline] |
assignment operator
Definition at line 142 of file callback_r_10.h.
References lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::swap().
R lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::operator() | ( | typename util::CallTraits< P1 >::TParam | iP1, | |
typename util::CallTraits< P2 >::TParam | iP2, | |||
typename util::CallTraits< P3 >::TParam | iP3, | |||
typename util::CallTraits< P4 >::TParam | iP4, | |||
typename util::CallTraits< P5 >::TParam | iP5, | |||
typename util::CallTraits< P6 >::TParam | iP6, | |||
typename util::CallTraits< P7 >::TParam | iP7, | |||
typename util::CallTraits< P8 >::TParam | iP8, | |||
typename util::CallTraits< P9 >::TParam | iP9, | |||
typename util::CallTraits< P10 >::TParam | iP10 | |||
) | const [inline] |
THE operator.
Executes the callback.
Definition at line 151 of file callback_r_10.h.
References lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::dispatcher_, lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::isEmpty(), and LASS_THROW_EX.
void lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::reset | ( | ) | [inline] |
Reset to empty callback.
Definition at line 165 of file callback_r_10.h.
References lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::dispatcher_, and lass::util::SharedPtr< T, StoragePolicy, CounterPolicy >::reset().
bool lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::isEmpty | ( | ) | const [inline] |
Returns true if no callback dispatcher is assigned to this object.
Definition at line 172 of file callback_r_10.h.
References lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::dispatcher_, and lass::util::SharedPtr< T, StoragePolicy, CounterPolicy >::isEmpty().
Referenced by lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::operator()().
bool lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::operator! | ( | ) | const [inline] |
return this->isEmpty()
Definition at line 179 of file callback_r_10.h.
References lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::dispatcher_, and lass::util::SharedPtr< T, StoragePolicy, CounterPolicy >::isEmpty().
lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::operator num::SafeBool | ( | ) | const [inline] |
return !this->isEmpty())
Definition at line 186 of file callback_r_10.h.
References lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::dispatcher_, lass::util::SharedPtr< T, StoragePolicy, CounterPolicy >::isEmpty(), lass::num::safeFalse, and lass::num::safeTrue.
void lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::swap | ( | TSelf & | iOther | ) | [inline] |
Swaps the dispatcher of this callback with the dispatcher of another.
Definition at line 193 of file callback_r_10.h.
References lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::dispatcher_.
Referenced by lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::operator=().
CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 > makeCallback | ( | R(*)(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10) | iFunction | ) | [related] |
const CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 > & makeCallback | ( | const CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 > & | iCallback | ) | [related] |
CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 > makeCallback | ( | ObjectPtr | iObject, | |
R(Object::*)(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10) | iMethod | |||
) | [related] |
make a CallbackR10 from a object and method
make a CallbackR10 from a object and const method
Definition at line 231 of file callback_r_10.h.
TDispatcherPtr lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::dispatcher_ [private] |
Definition at line 200 of file callback_r_10.h.
Referenced by lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::isEmpty(), lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::operator num::SafeBool(), lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::operator!(), lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::operator()(), lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::reset(), and lass::util::CallbackR10< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >::swap().
Generated on Mon Nov 10 14:22:16 2008 for Library of Assembled Shared Sources by 1.5.7.1 |