Shadowrun: Awakened 29 September 2011 - Build 871
Classes | Namespaces | Defines | Functions
FastDelegate.h File Reference
#include <memory.h>
Include dependency graph for port/FastDelegate.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  fastdelegate::DelegateMemento
class  fastdelegate::detail::ClosurePtr< GenericMemFunc, StaticFuncPtr, UnvoidStaticFuncPtr >
struct  fastdelegate::detail::DefaultVoidToVoid< T >
struct  fastdelegate::detail::DefaultVoidToVoid< DefaultVoid >
union  fastdelegate::detail::horrible_union< OutputClass, InputClass >
struct  fastdelegate::detail::SimplifyMemFunc< N >
struct  fastdelegate::detail::SimplifyMemFunc< SINGLE_MEMFUNCPTR_SIZE >
struct  fastdelegate::detail::VoidToDefaultVoid< T >
struct  fastdelegate::detail::VoidToDefaultVoid< void >
class  fastdelegate::FastDelegate0< RetType >
struct  fastdelegate::FastDelegate0< RetType >::SafeBoolStruct
class  fastdelegate::FastDelegate1< Param1, RetType >
struct  fastdelegate::FastDelegate1< Param1, RetType >::SafeBoolStruct
class  fastdelegate::FastDelegate2< Param1, Param2, RetType >
struct  fastdelegate::FastDelegate2< Param1, Param2, RetType >::SafeBoolStruct
class  fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >
struct  fastdelegate::FastDelegate3< Param1, Param2, Param3, RetType >::SafeBoolStruct
class  fastdelegate::FastDelegate4< Param1, Param2, Param3, Param4, RetType >
struct  fastdelegate::FastDelegate4< Param1, Param2, Param3, Param4, RetType >::SafeBoolStruct
class  fastdelegate::FastDelegate5< Param1, Param2, Param3, Param4, Param5, RetType >
struct  fastdelegate::FastDelegate5< Param1, Param2, Param3, Param4, Param5, RetType >::SafeBoolStruct
class  fastdelegate::FastDelegate6< Param1, Param2, Param3, Param4, Param5, Param6, RetType >
struct  fastdelegate::FastDelegate6< Param1, Param2, Param3, Param4, Param5, Param6, RetType >::SafeBoolStruct
class  fastdelegate::FastDelegate7< Param1, Param2, Param3, Param4, Param5, Param6, Param7, RetType >
struct  fastdelegate::FastDelegate7< Param1, Param2, Param3, Param4, Param5, Param6, Param7, RetType >::SafeBoolStruct
class  fastdelegate::FastDelegate8< Param1, Param2, Param3, Param4, Param5, Param6, Param7, Param8, RetType >
struct  fastdelegate::FastDelegate8< Param1, Param2, Param3, Param4, Param5, Param6, Param7, Param8, RetType >::SafeBoolStruct

Namespaces

namespace  fastdelegate
namespace  fastdelegate::detail

Defines

#define FASTDELEGATE_USESTATICFUNCTIONHACK
#define FASTDELEGATEDECLARE(CLASSNAME)   class CLASSNAME;
#define FASTDLGT_RETTYPE   RetType

Functions

template<class OutputClass , class InputClass >
OutputClass fastdelegate::detail::horrible_cast (const InputClass input)
template<class OutputClass , class InputClass >
OutputClass fastdelegate::detail::implicit_cast (InputClass input)
template<class X , class Y , class Param1 , class Param2 , class Param3 , class Param4 , class Param5 , class Param6 , class Param7 , class RetType >
FastDelegate7< Param1, Param2,
Param3, Param4, Param5, Param6,
Param7, RetType > 
fastdelegate::MakeDelegate (Y *x, RetType(X::*func)(Param1 p1, Param2 p2, Param3 p3, Param4 p4, Param5 p5, Param6 p6, Param7 p7))
template<class X , class Y , class Param1 , class Param2 , class Param3 , class Param4 , class Param5 , class Param6 , class RetType >
FastDelegate6< Param1, Param2,
Param3, Param4, Param5, Param6,
RetType > 
fastdelegate::MakeDelegate (Y *x, RetType(X::*func)(Param1 p1, Param2 p2, Param3 p3, Param4 p4, Param5 p5, Param6 p6))
template<class X , class Y , class Param1 , class Param2 , class Param3 , class Param4 , class Param5 , class RetType >
FastDelegate5< Param1, Param2,
Param3, Param4, Param5,
RetType > 
fastdelegate::MakeDelegate (Y *x, RetType(X::*func)(Param1 p1, Param2 p2, Param3 p3, Param4 p4, Param5 p5))
template<class X , class Y , class Param1 , class Param2 , class Param3 , class Param4 , class RetType >
FastDelegate4< Param1, Param2,
Param3, Param4, RetType > 
fastdelegate::MakeDelegate (Y *x, RetType(X::*func)(Param1 p1, Param2 p2, Param3 p3, Param4 p4))
template<class X , class Y , class Param1 , class Param2 , class Param3 , class RetType >
FastDelegate3< Param1, Param2,
Param3, RetType > 
fastdelegate::MakeDelegate (Y *x, RetType(X::*func)(Param1 p1, Param2 p2, Param3 p3))
template<class X , class Y , class Param1 , class Param2 , class RetType >
FastDelegate2< Param1, Param2,
RetType > 
fastdelegate::MakeDelegate (Y *x, RetType(X::*func)(Param1 p1, Param2 p2))
template<class X , class Y , class Param1 , class RetType >
FastDelegate1< Param1, RetType > fastdelegate::MakeDelegate (Y *x, RetType(X::*func)(Param1 p1))
template<class X , class Y , class RetType >
FastDelegate0< RetType > fastdelegate::MakeDelegate (Y *x, RetType(X::*func)())
template<class X , class Y , class Param1 , class Param2 , class Param3 , class Param4 , class Param5 , class Param6 , class Param7 , class Param8 , class RetType >
FastDelegate8< Param1, Param2,
Param3, Param4, Param5, Param6,
Param7, Param8, RetType > 
fastdelegate::MakeDelegate (Y *x, RetType(X::*func)(Param1 p1, Param2 p2, Param3 p3, Param4 p4, Param5 p5, Param6 p6, Param7 p7, Param8 p8))

Define Documentation

#define FASTDELEGATE_USESTATICFUNCTIONHACK

Definition at line 67 of file port/FastDelegate.h.

#define FASTDELEGATEDECLARE (   CLASSNAME)    class CLASSNAME;

Definition at line 191 of file port/FastDelegate.h.

#define FASTDLGT_RETTYPE   RetType

Definition at line 1999 of file port/FastDelegate.h.


Copyright © 2007-2010 by The Shadowrun: Awakened Team. This work is licensed under the GNU Lesser General Public License 3.

GNU Lesser General Public License 3 Sourceforge.net