Definition at line 88 of file MemoryTest.cpp.
Public Member Functions | |
| SomeThing () | |
| ~SomeThing () | |
Data Fields | |
| int | m_creationCounter |
| Just a number for identifying within test program. | |
| Vec3 | m_max |
| Minimal bounding rect, values must be known and constant in order to remove from RTree. | |
| Vec3 | m_min |
Static Public Attributes | |
| static int | s_outstandingAllocs = 0 |
| Count how many outstanding objects remain. | |
| SomeThing::SomeThing | ( | ) | [inline] |
Definition at line 90 of file MemoryTest.cpp.
References s_outstandingAllocs.
00091 { 00092 ++s_outstandingAllocs; 00093 }
| SomeThing::~SomeThing | ( | ) | [inline] |
Definition at line 94 of file MemoryTest.cpp.
References s_outstandingAllocs.
00095 { 00096 --s_outstandingAllocs; 00097 }
Just a number for identifying within test program.
Definition at line 99 of file MemoryTest.cpp.
Referenced by main(), and QueryResultCallback().
Minimal bounding rect, values must be known and constant in order to remove from RTree.
Definition at line 100 of file MemoryTest.cpp.
Referenced by main().
int SomeThing::s_outstandingAllocs = 0 [static] |
Count how many outstanding objects remain.
Init static.
Definition at line 102 of file MemoryTest.cpp.
Referenced by main(), SomeThing(), and ~SomeThing().
1.5.6