| 38 | /* Destructor */ |
| 39 | |
| 40 | CBaseObject::~CBaseObject() |
| 41 | { |
| 42 | /* Decrement the number of objects active */ |
| 43 | InterlockedDecrement(&m_cObjects); |
| 44 | |
| 45 | #ifdef DEBUG |
| 46 | DbgRegisterObjectDestruction(m_dwCookie); |
| 47 | #endif |
| 48 | } |
| 49 | |
| 50 | |
| 51 | /* Constructor */ |
nothing calls this directly
no test coverage detected