| 53 | |
| 54 | inline cASNativeObject* GetReference() { m_ref_count++; return this; } |
| 55 | inline void RemoveReference() { m_ref_count--; if (m_ref_count == 0) delete this; } |
| 56 | inline bool IsShared() { return (m_ref_count > 1); } |
| 57 | }; |
| 58 |
no outgoing calls
no test coverage detected