Go to the source code of this file.
Data Structures | |
class | delegates::MYGUI_I_DELEGATE |
class | delegates::MYGUI_C_STATIC_DELEGATE |
class | delegates::MYGUI_C_METHOD_DELEGATE |
class | delegates::MYGUI_C_DELEGATE |
class | delegates::MYGUI_C_MULTI_DELEGATE |
Namespaces | |
namespace | delegates |
Defines | |
#define | MYGUI_COMBINE(a, b) MYGUI_COMBINE1(a, b) |
#define | MYGUI_COMBINE1(a, b) a##b |
#define | MYGUI_I_DELEGATE MYGUI_COMBINE(IDelegate, MYGUI_SUFFIX) |
#define | MYGUI_C_STATIC_DELEGATE MYGUI_COMBINE(CStaticDelegate, MYGUI_SUFFIX) |
#define | MYGUI_C_METHOD_DELEGATE MYGUI_COMBINE(CMethodDelegate, MYGUI_SUFFIX) |
#define | MYGUI_C_DELEGATE MYGUI_COMBINE(CDelegate, MYGUI_SUFFIX) |
#define | MYGUI_C_MULTI_DELEGATE MYGUI_COMBINE(CMultiDelegate, MYGUI_SUFFIX) |
Functions | |
MYGUI_TEMPLATE MYGUI_TEMPLATE_PARAMS delegates::MYGUI_I_DELEGATE MYGUI_TEMPLATE_ARGS * | newDelegate (void(*_func)(MYGUI_PARAMS)) |
template MYGUI_T_TEMPLATE_PARAMS delegates::MYGUI_I_DELEGATE MYGUI_TEMPLATE_ARGS * | newDelegate (T *_object, void(T::*_method)(MYGUI_PARAMS)) |
Definition in file MyGUI_DelegateImplement.h.
#define MYGUI_C_DELEGATE MYGUI_COMBINE(CDelegate, MYGUI_SUFFIX) |
Definition at line 35 of file MyGUI_DelegateImplement.h.
#define MYGUI_C_METHOD_DELEGATE MYGUI_COMBINE(CMethodDelegate, MYGUI_SUFFIX) |
Definition at line 33 of file MyGUI_DelegateImplement.h.
#define MYGUI_C_MULTI_DELEGATE MYGUI_COMBINE(CMultiDelegate, MYGUI_SUFFIX) |
Definition at line 36 of file MyGUI_DelegateImplement.h.
#define MYGUI_C_STATIC_DELEGATE MYGUI_COMBINE(CStaticDelegate, MYGUI_SUFFIX) |
Definition at line 32 of file MyGUI_DelegateImplement.h.
#define MYGUI_COMBINE | ( | a, | |||
b | ) | MYGUI_COMBINE1(a, b) |
Definition at line 27 of file MyGUI_DelegateImplement.h.
#define MYGUI_COMBINE1 | ( | a, | |||
b | ) | a##b |
Definition at line 28 of file MyGUI_DelegateImplement.h.
#define MYGUI_I_DELEGATE MYGUI_COMBINE(IDelegate, MYGUI_SUFFIX) |
Definition at line 30 of file MyGUI_DelegateImplement.h.
template MYGUI_T_TEMPLATE_PARAMS delegates::MYGUI_I_DELEGATE MYGUI_TEMPLATE_ARGS* newDelegate | ( | T * | _object, | |
void(T::*)(MYGUI_PARAMS) | _method | |||
) | [inline] |
Definition at line 132 of file MyGUI_DelegateImplement.h.
MYGUI_TEMPLATE MYGUI_TEMPLATE_PARAMS delegates::MYGUI_I_DELEGATE MYGUI_TEMPLATE_ARGS* newDelegate | ( | void(*)(MYGUI_PARAMS) | _func | ) | [inline] |
Definition at line 122 of file MyGUI_DelegateImplement.h.