| 60 | ULONG RefCount() { return mRefCount; } |
| 61 | |
| 62 | ObjectBase() : mRefCount(1) {} |
| 63 | |
| 64 | // Declare a virtual destructor for correct 'delete this' behaviour in Delete(), |
| 65 | // and because it is likely to be more convenient and reliable than overriding |
nothing calls this directly
no outgoing calls
no test coverage detected