struct IScriptTableIterator { };
IScriptSystem.h
Interface to the iterator of values in script table. Notes: This is reference counted interface, when last reference to this interface is release, object is deleted. Used together with smart_ptr.
smart_ptr
virtual ~IScriptTableIterator();
virtual void AddRef();
virtual bool Next(ScriptAnyValue & var);
Gets next value in the table.
Decrements reference delete script table iterator.
virtual void Release();