decrements the reference count on the referenced object
| 253 | |
| 254 | /// decrements the reference count on the referenced object |
| 255 | void decRef() |
| 256 | { |
| 257 | if(mObject) |
| 258 | mObject->decRefCount(); |
| 259 | } |
| 260 | }; |
| 261 | |
| 262 | /// Reference counted object template pointer class |
nothing calls this directly
no test coverage detected