increments the reference count on the referenced object
| 246 | |
| 247 | /// increments the reference count on the referenced object |
| 248 | void incRef() |
| 249 | { |
| 250 | if(mObject) |
| 251 | mObject->incRefCount(); |
| 252 | } |
| 253 | |
| 254 | /// decrements the reference count on the referenced object |
| 255 | void decRef() |
nothing calls this directly
no test coverage detected