|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |
class CList { public: CList(); ~CList(); public: int GetSize() const; XValue GetAt(int nIndex) const; void Add(const XValue &pValue); };
The ECMAScript list.
CValue
Constructor/Destructor Summary | |
CList
();
����������Constructs the list. |
|
~CList
();
����������Destroys the list. |
Function Summary | |
int
|
GetSize
();
����������Returns a number of values in this list. |
XValue
|
GetAt
(int nIndex);
����������Returns a value at the given index of this list. |
void
|
Add
(const XValue &pValue);
����������Adds a value to the end of this list. |
Constructor/Destructor Detail |
CList();
Constructs the list.
~CList();
Destroys the list.
Function Detail |
int GetSize();
Returns a number of values in this list.
XValue GetAt(int nIndex);
Returns a value at the given index of this list.
nIndex
- the index (zero-based)void Add(const XValue &pValue);
Adds a value to the end of this list.
pValue
- the value to add
|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |