library of assembled shared sources

http://lass.cocamware.com

lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 > Class Template Reference
[Callback]

callback with 11 parameter11 and with returnvalue. More...

#include <callback_r_11.h>


Public Types

typedef CallbackR11< R, P1, P2,
P3, P4, P5, P6, P7, P8, P9,
P10, P11 > 
TSelf
typedef SharedPtr
< impl::DispatcherR11< R, P1,
P2, P3, P4, P5, P6, P7, P8, P9,
P10, P11 > > 
TDispatcherPtr

Public Member Functions

 CallbackR11 ()
 Default constructor, construct empty callback.
template<typename FunctionType >
 CallbackR11 (FunctionType iFunction)
 Construct function callback.
template<typename ObjectPtr , typename Method >
 CallbackR11 (ObjectPtr iObject, Method iMethod)
 Construct object/method callback.
 CallbackR11 (const TSelf &iOther)
 copy constructor
template<typename Other >
TSelfoperator= (const Other &iOther)
 assignment operator
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, typename util::CallTraits< P11 >::TParam iP11) 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 , typename P11 >
CallbackR11< R, P1, P2, P3, P4,
P5, P6, P7, P8, P9, P10, P11 > 
makeCallback (R(*iFunction)(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11))
 make a CallbackR11 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 , typename P11 >
const CallbackR11< R, P1, P2,
P3, P4, P5, P6, P7, P8, P9,
P10, P11 > & 
makeCallback (const CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 > &iCallback)
 make a CallbackR11 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 , typename P11 >
CallbackR11< R, P1, P2, P3, P4,
P5, P6, P7, P8, P9, P10, P11 > 
makeCallback (ObjectPtr iObject, R(Object::*iMethod)(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11))
 make a CallbackR11 from a object and method


Detailed Description

template<typename R, typename P1, typename P2, typename P3, typename P4, typename P5, typename P6, typename P7, typename P8, typename P9, typename P10, typename P11>
class lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >

callback with 11 parameter11 and with returnvalue.

Date:
2002
Author:
Bram de Greve [Bramz] (contact: bramz@users.sourceforge.net)
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 11 parameter(s) and gives a returnvalue.

Definition at line 97 of file callback_r_11.h.


Member Typedef Documentation

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
typedef CallbackR11<R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11> lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::TSelf

Definition at line 101 of file callback_r_11.h.

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
typedef SharedPtr< impl::DispatcherR11<R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11> > lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::TDispatcherPtr

Definition at line 102 of file callback_r_11.h.


Constructor & Destructor Documentation

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::CallbackR11 (  )  [inline]

Default constructor, construct empty callback.

Definition at line 108 of file callback_r_11.h.

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
template<typename FunctionType >
lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::CallbackR11 ( FunctionType  iFunction  )  [inline]

Construct function callback.

Definition at line 115 of file callback_r_11.h.

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
template<typename ObjectPtr , typename Method >
lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::CallbackR11 ( ObjectPtr  iObject,
Method  iMethod 
) [inline]

Construct object/method callback.

Definition at line 123 of file callback_r_11.h.

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::CallbackR11 ( const TSelf iOther  )  [inline]

copy constructor

Definition at line 130 of file callback_r_11.h.


Member Function Documentation

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
template<typename Other >
TSelf& lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::operator= ( const Other &  iOther  )  [inline]

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
R lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::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,
typename util::CallTraits< P11 >::TParam  iP11 
) const [inline]

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
void lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::reset (  )  [inline]

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
bool lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::isEmpty (  )  const [inline]

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
bool lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::operator! (  )  const [inline]

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::operator num::SafeBool (  )  const [inline]

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
void lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::swap ( TSelf iOther  )  [inline]

Swaps the dispatcher of this callback with the dispatcher of another.

Definition at line 193 of file callback_r_11.h.

References lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::dispatcher_.

Referenced by lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::operator=().


Friends And Related Function Documentation

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 > makeCallback ( R(*)(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11)  iFunction  )  [related]

make a CallbackR11 from a function

Definition at line 209 of file callback_r_11.h.

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
const CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 > & makeCallback ( const CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 > &  iCallback  )  [related]

make a CallbackR11 from a function

Definition at line 220 of file callback_r_11.h.

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 , typename P11 >
CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 > makeCallback ( ObjectPtr  iObject,
R(Object::*)(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11)  iMethod 
) [related]

make a CallbackR11 from a object and method

make a CallbackR11 from a object and const method

Definition at line 231 of file callback_r_11.h.


Field Documentation

template<typename R , typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , typename P6 , typename P7 , typename P8 , typename P9 , typename P10 , typename P11 >
TDispatcherPtr lass::util::CallbackR11< R, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >::dispatcher_ [private]


The documentation for this class was generated from the following file:

Generated on Mon Nov 10 14:22:16 2008 for Library of Assembled Shared Sources by doxygen 1.5.7.1
SourceForge.net Logo