#include <TModelManager.h>
Definition at line 13 of file TModelManager.h.
◆ ModelNode() [1/2]
TModelManager::ModelNode::ModelNode |
( |
| ) |
|
|
inline |
Definition at line 16 of file TModelManager.h.
17 {
18 m_CRC32 = 0;
19 m_uiRefCount = 0;
21 }
◆ ModelNode() [2/2]
TModelManager::ModelNode::ModelNode |
( |
TUINT32 | a_CRC32, |
|
|
TModel * | a_pModel ) |
|
inline |
Definition at line 23 of file TModelManager.h.
24 {
25 Create( a_CRC32, a_pModel );
26 }
void Create(TUINT32 a_CRC32, TModel *a_pModel)
◆ Create()
void TModelManager::ModelNode::Create |
( |
TUINT32 | a_CRC32, |
|
|
TModel * | a_pModel ) |
|
inline |
Definition at line 40 of file TModelManager.h.
41 {
42 m_CRC32 = a_CRC32;
43 m_uiRefCount = 0;
44 m_pModel = a_pModel;
45 }
◆ DecRefCount()
TUINT TModelManager::ModelNode::DecRefCount |
( |
| ) |
|
|
inline |
Definition at line 33 of file TModelManager.h.
34 {
35
37 return --m_uiRefCount;
38 }
◆ GetCRC32()
TUINT32 TModelManager::ModelNode::GetCRC32 |
( |
| ) |
const |
|
inline |
◆ GetModel()
TModel * TModelManager::ModelNode::GetModel |
( |
| ) |
const |
|
inline |
◆ GetRefCount()
TUINT TModelManager::ModelNode::GetRefCount |
( |
| ) |
const |
|
inline |
◆ IncRefCount()
TUINT TModelManager::ModelNode::IncRefCount |
( |
| ) |
|
|
inline |
◆ operator=()
Definition at line 51 of file TModelManager.h.
52 {
53 m_CRC32 = a_rOther.m_CRC32;
54 m_uiRefCount = a_rOther.m_uiRefCount;
55 m_pModel = a_rOther.m_pModel;
56 }
The documentation for this class was generated from the following file: