IScriptTableIterator

C++
struct IScriptTableIterator {
};
File

IScriptSystem.h

Description

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.

See Also

smart_ptr

IScriptTableIterator::~IScriptTableIterator Destructor
C++
IScriptTableIterator::AddRef Method
C++
virtual void AddRef();
IScriptTableIterator::Next Method
C++
virtual bool Next(ScriptAnyValue & var);
Description

Gets next value in the table.

IScriptTableIterator::Release Method

Decrements reference delete script table iterator.

C++
virtual void Release();