| 83 | |
| 84 | PX_FORCE_INLINE void incRefCount() { ++mRefCount; PX_ASSERT(mRefCount>0); } |
| 85 | PX_FORCE_INLINE PxU32 decRefCount() { PX_ASSERT(mRefCount>0); return --mRefCount; } |
| 86 | PX_FORCE_INLINE PxU32 getRefCount() const { return mRefCount; } |
| 87 | |
| 88 | private: |
no outgoing calls
no test coverage detected