| 25 | /* Constructor */ |
| 26 | |
| 27 | CBaseObject::CBaseObject(TCHAR *pName) |
| 28 | { |
| 29 | /* Increment the number of active objects */ |
| 30 | InterlockedIncrement(&m_cObjects); |
| 31 | |
| 32 | #ifdef DEBUG |
| 33 | m_dwCookie = DbgRegisterObjectCreation(pName); |
| 34 | #endif |
| 35 | } |
| 36 | |
| 37 | |
| 38 | /* Destructor */ |
nothing calls this directly
no test coverage detected