| 494 | |
| 495 | template <typename T> |
| 496 | T * |
| 497 | IntrusivePtr<T>::get() const |
| 498 | { |
| 499 | IntrusivePtrPolicy<T>::dereferenceCheck(m_obj); |
| 500 | return m_obj; |
| 501 | } |
| 502 | |
| 503 | /* The Set/Unset methods are the basic implementation of our |
| 504 | * reference counting. The Reset method is the standard way |
no outgoing calls
no test coverage detected