#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 DelegateMemento & | GetMemento () |
| 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, UnvoidStaticFunctionPtr > | ClosureType |
| 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 |
Definition at line 1109 of file FastDelegate.h.
typedef detail::ClosurePtr<GenericMemFn, StaticFunctionPtr, UnvoidStaticFunctionPtr> fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::ClosureType [private] |
Definition at line 1115 of file FastDelegate.h.
typedef detail::DefaultVoidToVoid<RetType>::type fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::DesiredRetType [private] |
Definition at line 1111 of file FastDelegate.h.
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.
typedef DesiredRetType(* fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::StaticFunctionPtr)(Param1 p1, Param2 p2, Param3 p3) [private] |
Definition at line 1112 of file FastDelegate.h.
| typedef FastDelegate3 fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::type |
Definition at line 1119 of file FastDelegate.h.
typedef StaticFunctionPtr SafeBoolStruct::* fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::unspecified_bool_type [private] |
Definition at line 1168 of file FastDelegate.h.
typedef RetType(* fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::UnvoidStaticFunctionPtr)(Param1 p1, Param2 p2, Param3 p3) [private] |
Definition at line 1113 of file FastDelegate.h.
typedef struct fastdelegate::FastDelegate3::SafeBoolStruct fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::UselessTypedef [private] |
| fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::FastDelegate3 | ( | ) | [inline] |
Definition at line 1122 of file FastDelegate.h.
| fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::FastDelegate3 | ( | const FastDelegate3< Param1, Param2, Param3, RetType > & | x | ) | [inline] |
Definition at line 1123 of file FastDelegate.h.
| 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.
| 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.
| 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.
| 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.
| 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.
| 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.
| void fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::clear | ( | ) | [inline] |
Definition at line 1182 of file FastDelegate.h.
| bool fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::empty | ( | ) | const [inline] |
Definition at line 1180 of file FastDelegate.h.
| const DelegateMemento& fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::GetMemento | ( | ) | [inline] |
Definition at line 1184 of file FastDelegate.h.
| RetType fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::InvokeStaticFunction | ( | Param1 | p1, |
| Param2 | p2, | ||
| Param3 | p3 | ||
| ) | const [inline, private] |
Definition at line 1188 of file FastDelegate.h.
| fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator unspecified_bool_type | ( | ) | const [inline] |
Definition at line 1170 of file FastDelegate.h.
| bool fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator! | ( | ) | const [inline] |
Definition at line 1178 of file FastDelegate.h.
| 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.
| bool fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator!= | ( | StaticFunctionPtr | funcptr | ) | [inline] |
Definition at line 1176 of file FastDelegate.h.
| RetType fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator() | ( | Param1 | p1, |
| Param2 | p2, | ||
| Param3 | p3 | ||
| ) | const [inline] |
Definition at line 1160 of file FastDelegate.h.
| 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.
| void fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator= | ( | const FastDelegate3< Param1, Param2, Param3, RetType > & | x | ) | [inline] |
Definition at line 1125 of file FastDelegate.h.
| 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.
| 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.
| bool fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::operator== | ( | StaticFunctionPtr | funcptr | ) | [inline] |
Definition at line 1174 of file FastDelegate.h.
| 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.
| void fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::SetMemento | ( | const DelegateMemento & | any | ) | [inline] |
Definition at line 1185 of file FastDelegate.h.
ClosureType fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::m_Closure [private] |
Definition at line 1116 of file FastDelegate.h.