#include <EventDelegate.h>
Onikiri::EventDelegate< ClassType, ParamType >に対する継承グラフ
Public メソッド | |
EventDelegate (const EventDelegate &ref) | |
EventDelegate (ClassType *obj, MethodType func, ParamType param, int priority=RP_DEFAULT_EVENT) | |
void | Update () |
EventDelegate.h の 46 行で定義されています。
Onikiri::EventDelegate< ClassType, ParamType >::EventDelegate | ( | ClassType * | obj, | |
MethodType | func, | |||
ParamType | param, | |||
int | priority = RP_DEFAULT_EVENT | |||
) | [inline] |
EventDelegate.h の 57 行で定義されています。
参照先 Onikiri::EventBaseImplement::SetPriority().
00057 : 00058 m_obj ( obj ), 00059 m_func ( func ), 00060 m_param ( param ) 00061 { 00062 SetPriority(priority); 00063 };
関数の呼び出しグラフ:
Onikiri::EventDelegate< ClassType, ParamType >::EventDelegate | ( | const EventDelegate< ClassType, ParamType > & | ref | ) | [inline] |
EventDelegate.h の 65 行で定義されています。
参照先 Onikiri::EventBaseImplement::GetPriority()・Onikiri::EventBaseImplement::SetPriority().
00065 : 00066 m_obj ( ref.obj ), 00067 m_func ( ref.func ), 00068 m_param ( ref.param ) 00069 { 00070 SetPriority( ref.GetPriority() ); 00071 };
関数の呼び出しグラフ:
void Onikiri::EventDelegate< ClassType, ParamType >::Update | ( | ) | [inline, virtual] |