#include <ResourceBase.h>
Onikiri::PhysicalResourceBaseに対する継承グラフ
Public メソッド | |
virtual int | GetRID () |
virtual int | GetThreadCount () |
virtual int | GetTID (const int index) |
PhysicalResourceBase () | |
virtual void | SetRID (const int rid) |
virtual void | SetThreadCount (const int count) |
virtual void | SetTID (const int index, const int tid) |
~PhysicalResourceBase () | |
Protected 変数 | |
int | m_rid |
std::vector< int > | m_tid |
ResourceBase.h の 41 行で定義されています。
PhysicalResourceBase::PhysicalResourceBase | ( | ) |
PhysicalResourceBase::~PhysicalResourceBase | ( | ) |
int PhysicalResourceBase::GetRID | ( | ) | [virtual] |
ResourceBase.cpp の 68 行で定義されています。
参照先 m_rid.
00069 { 00070 return m_rid; 00071 }
Here is the caller graph for this function:
int PhysicalResourceBase::GetThreadCount | ( | ) | [virtual] |
Onikiri::PhysicalResourceIFを実装しています。
Onikiri::Coreで再定義されています。
ResourceBase.cpp の 46 行で定義されています。
参照先 m_tid.
00047 { 00048 return (int)m_tid.size(); 00049 }
int PhysicalResourceBase::GetTID | ( | const int | index | ) | [virtual] |
Onikiri::PhysicalResourceIFを実装しています。
Onikiri::Core・Onikiri::Threadで再定義されています。
ResourceBase.cpp の 56 行で定義されています。
参照元 Onikiri::Thread::GetTID()・Onikiri::Core::GetTID().
Here is the caller graph for this function:
void PhysicalResourceBase::SetRID | ( | const int | rid | ) | [virtual] |
void PhysicalResourceBase::SetThreadCount | ( | const int | count | ) | [virtual] |
Onikiri::PhysicalResourceIFを実装しています。
Onikiri::Threadで再定義されています。
ResourceBase.cpp の 51 行で定義されています。
参照先 m_tid.
参照元 Onikiri::Thread::SetThreadCount().
00052 { 00053 m_tid.resize( count, TID_INVALID ); 00054 }
Here is the caller graph for this function:
void PhysicalResourceBase::SetTID | ( | const int | index, | |
const int | tid | |||
) | [virtual] |
int Onikiri::PhysicalResourceBase::m_rid [protected] |
std::vector<int> Onikiri::PhysicalResourceBase::m_tid [protected] |