#include <EventWheel.h>
Public メソッド | |
EventWheel () | |
INLINE ListType * | GetEventList (int index) |
INLINE ListType * | PeekEventList (int index) |
INLINE void | ReleaseEventList (ListType *list, int index) |
void | Resize (int size) |
Protected 型 | |
typedef EventPtr | ListNode |
typedef EventList | ListType |
Protected 変数 | |
std::vector< ListType > | m_event |
int | m_size |
EventWheel.h の 47 行で定義されています。
typedef EventPtr Onikiri::EventWheel::ListNode [protected] |
EventWheel.h の 51 行で定義されています。
typedef EventList Onikiri::EventWheel::ListType [protected] |
EventWheel.h の 52 行で定義されています。
Onikiri::EventWheel::EventWheel | ( | ) | [inline] |
INLINE ListType* Onikiri::EventWheel::GetEventList | ( | int | index | ) | [inline] |
EventWheel.h の 78 行で定義されています。
参照先 m_event.
参照元 Onikiri::TimeWheelBase::AddEvent()・Onikiri::TimeWheelBase::CurrentEvents()・Onikiri::TimeWheelBase::EventsAfterTime().
00079 { 00080 return &m_event[index]; 00081 }
Here is the caller graph for this function:
INLINE ListType* Onikiri::EventWheel::PeekEventList | ( | int | index | ) | [inline] |
EventWheel.h の 73 行で定義されています。
参照先 m_event.
参照元 Onikiri::TimeWheelBase::End().
00074 { 00075 return &m_event[index]; 00076 }
Here is the caller graph for this function:
INLINE void Onikiri::EventWheel::ReleaseEventList | ( | ListType * | list, | |
int | index | |||
) | [inline] |
EventWheel.h の 83 行で定義されています。
参照元 Onikiri::TimeWheelBase::End().
Here is the caller graph for this function:
void Onikiri::EventWheel::Resize | ( | int | size | ) | [inline] |
EventWheel.h の 67 行で定義されています。
参照元 Onikiri::TimeWheelBase::TimeWheelBase().
Here is the caller graph for this function:
std::vector<ListType> Onikiri::EventWheel::m_event [protected] |
int Onikiri::EventWheel::m_size [protected] |