Classes | Public Types | Public Member Functions | Private Types | Private Member Functions | Private Attributes | List of all members
fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType > Class Template Reference

#include <FastDelegate.h>

Classes

struct  SafeBoolStruct
 

Public Types

typedef FastDelegate3 type
 

Public Member Functions

template<class X , class Y >
void bind (Y *pthis, DesiredRetType(X::*function_to_bind)(Param1 p1, Param2 p2, Param3 p3))
 
template<class X , class Y >
void bind (const Y *pthis, DesiredRetType(X::*function_to_bind)(Param1 p1, Param2 p2, Param3 p3) const)
 
void bind (DesiredRetType(*function_to_bind)(Param1 p1, Param2 p2, Param3 p3))
 
void clear ()
 
bool empty () const
 
 FastDelegate3 ()
 
 FastDelegate3 (const FastDelegate3 &x)
 
template<class X , class Y >
 FastDelegate3 (Y *pthis, DesiredRetType(X::*function_to_bind)(Param1 p1, Param2 p2, Param3 p3))
 
template<class X , class Y >
 FastDelegate3 (const Y *pthis, DesiredRetType(X::*function_to_bind)(Param1 p1, Param2 p2, Param3 p3) const)
 
 FastDelegate3 (DesiredRetType(*function_to_bind)(Param1 p1, Param2 p2, Param3 p3))
 
const DelegateMementoGetMemento ()
 
 operator unspecified_bool_type () const
 
bool operator! () const
 
bool operator!= (const FastDelegate3 &x) const
 
bool operator!= (StaticFunctionPtr funcptr)
 
RetType operator() (Param1 p1, Param2 p2, Param3 p3) const
 
bool operator< (const FastDelegate3 &x) const
 
void operator= (const FastDelegate3 &x)
 
void operator= (DesiredRetType(*function_to_bind)(Param1 p1, Param2 p2, Param3 p3))
 
bool operator== (const FastDelegate3 &x) const
 
bool operator== (StaticFunctionPtr funcptr)
 
bool operator> (const FastDelegate3 &x) const
 
void SetMemento (const DelegateMemento &any)
 

Private Types

typedef detail::ClosurePtr< GenericMemFn, StaticFunctionPtr, UnvoidStaticFunctionPtrClosureType
 
typedef detail::DefaultVoidToVoid< RetType >::type DesiredRetType
 
typedef RetType(detail::GenericClass::* GenericMemFn) (Param1 p1, Param2 p2, Param3 p3)
 
typedef DesiredRetType(* StaticFunctionPtr) (Param1 p1, Param2 p2, Param3 p3)
 
typedef StaticFunctionPtr SafeBoolStruct::* unspecified_bool_type
 
typedef RetType(* UnvoidStaticFunctionPtr) (Param1 p1, Param2 p2, Param3 p3)
 
typedef struct fastdelegate::FastDelegate3::SafeBoolStruct UselessTypedef
 

Private Member Functions

RetType InvokeStaticFunction (Param1 p1, Param2 p2, Param3 p3) const
 

Private Attributes

ClosureType m_Closure
 

Detailed Description

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
class fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >

Definition at line 1109 of file FastDelegate.h.

Member Typedef Documentation

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
typedef detail::ClosurePtr<GenericMemFn, StaticFunctionPtr, UnvoidStaticFunctionPtr> fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::ClosureType
private

Definition at line 1115 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
typedef detail::DefaultVoidToVoid<RetType>::type fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::DesiredRetType
private

Definition at line 1111 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
typedef RetType(detail::GenericClass::* fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::GenericMemFn) (Param1 p1, Param2 p2, Param3 p3)
private

Definition at line 1114 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
typedef DesiredRetType(* fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::StaticFunctionPtr) (Param1 p1, Param2 p2, Param3 p3)
private

Definition at line 1112 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
typedef FastDelegate3 fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::type

Definition at line 1119 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
typedef StaticFunctionPtr SafeBoolStruct::* fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::unspecified_bool_type
private

Definition at line 1168 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
typedef RetType(* fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::UnvoidStaticFunctionPtr) (Param1 p1, Param2 p2, Param3 p3)
private

Definition at line 1113 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
typedef struct fastdelegate::FastDelegate3::SafeBoolStruct fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::UselessTypedef
private

Constructor & Destructor Documentation

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::FastDelegate3 ( )
inline

Definition at line 1122 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::FastDelegate3 ( const FastDelegate3< Param1, Param2, Param3, RetType > &  x)
inline

Definition at line 1123 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
template<class X , class Y >
fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::FastDelegate3 ( Y *  pthis,
DesiredRetType(X::*)(Param1 p1, Param2 p2, Param3 p3)  function_to_bind 
)
inline

Definition at line 1137 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
template<class X , class Y >
fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::FastDelegate3 ( const Y *  pthis,
DesiredRetType(X::*)(Param1 p1, Param2 p2, Param3 p3) const  function_to_bind 
)
inline

Definition at line 1144 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::FastDelegate3 ( DesiredRetType(*)(Param1 p1, Param2 p2, Param3 p3)  function_to_bind)
inline

Definition at line 1151 of file FastDelegate.h.

Member Function Documentation

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
template<class X , class Y >
void fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::bind ( Y *  pthis,
DesiredRetType(X::*)(Param1 p1, Param2 p2, Param3 p3)  function_to_bind 
)
inline

Definition at line 1140 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
template<class X , class Y >
void fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::bind ( const Y *  pthis,
DesiredRetType(X::*)(Param1 p1, Param2 p2, Param3 p3) const  function_to_bind 
)
inline

Definition at line 1147 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
void fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::bind ( DesiredRetType(*)(Param1 p1, Param2 p2, Param3 p3)  function_to_bind)
inline

Definition at line 1156 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
void fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::clear ( )
inline

Definition at line 1182 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
bool fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::empty ( ) const
inline

Definition at line 1180 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
const DelegateMemento& fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::GetMemento ( )
inline

Definition at line 1184 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
RetType fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::InvokeStaticFunction ( Param1  p1,
Param2  p2,
Param3  p3 
) const
inlineprivate

Definition at line 1188 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator unspecified_bool_type ( ) const
inline

Definition at line 1170 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
bool fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator! ( ) const
inline

Definition at line 1178 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
bool fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator!= ( const FastDelegate3< Param1, Param2, Param3, RetType > &  x) const
inline

Definition at line 1129 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
bool fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator!= ( StaticFunctionPtr  funcptr)
inline

Definition at line 1176 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
RetType fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator() ( Param1  p1,
Param2  p2,
Param3  p3 
) const
inline

Definition at line 1160 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
bool fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator< ( const FastDelegate3< Param1, Param2, Param3, RetType > &  x) const
inline

Definition at line 1131 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
void fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator= ( const FastDelegate3< Param1, Param2, Param3, RetType > &  x)
inline

Definition at line 1125 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
void fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator= ( DesiredRetType(*)(Param1 p1, Param2 p2, Param3 p3)  function_to_bind)
inline

Definition at line 1154 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
bool fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator== ( const FastDelegate3< Param1, Param2, Param3, RetType > &  x) const
inline

Definition at line 1127 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
bool fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator== ( StaticFunctionPtr  funcptr)
inline

Definition at line 1174 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
bool fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator> ( const FastDelegate3< Param1, Param2, Param3, RetType > &  x) const
inline

Definition at line 1133 of file FastDelegate.h.

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
void fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::SetMemento ( const DelegateMemento any)
inline

Definition at line 1185 of file FastDelegate.h.

Member Data Documentation

template<class Param1, class Param2, class Param3, class RetType = detail::DefaultVoid>
ClosureType fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::m_Closure
private

Definition at line 1116 of file FastDelegate.h.


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


socketcan_interface
Author(s): Mathias Lüdtke
autogenerated on Sat May 4 2019 02:40:41