| 183 | void AddRefForRegistration() { m_registeredRef = true; } |
| 184 | |
| 185 | void ReleaseForRegistration() |
| 186 | { |
| 187 | m_object = nullptr; |
| 188 | m_registeredRef = false; |
| 189 | if (m_refs == 0) |
| 190 | delete this; |
| 191 | } |
| 192 | |
| 193 | void AddRefForCallback() { AddRefInternal(); } |
| 194 | void ReleaseForCallback() { ReleaseInternal(); } |
no outgoing calls
no test coverage detected