interface IScriptTable ----------------------------------------------------------------
| 36 | |
| 37 | // interface IScriptTable ---------------------------------------------------------------- |
| 38 | virtual void AddRef() { m_nRefCount++; } |
| 39 | virtual void Release() { if (--m_nRefCount <= 0) DeleteThis(); }; |
| 40 | |
| 41 | virtual IScriptSystem* GetScriptSystem() const; |
no outgoing calls
no test coverage detected