| 52 | virtual const sASTypeInfo& GetReturnType(int mid) const = 0; |
| 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 | }; |
no outgoing calls
no test coverage detected