|
Unicorn XML Toolkit Version 1.50.00 |
|||||||||
�PREV CLASS�� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |
class CEnumeration: public CInterface { public: CEnumeration(); virtual ~CEnumeration(); public: virtual int GetLength() = 0; virtual const WCHAR *Item(int nIndex) = 0; }; typedef XInterface<CEnumeration> XEnumeration;
The abstract interface to enumerations of string items.
Constructor/Destructor Summary | |
CEnumeration
();
����������Constructs the enumeration. |
|
~CEnumeration
();
����������Destroys the enumeration. |
Function Summary | |
int
|
GetLength
();
����������Returns a number of items in this enumeration. |
const�WCHAR�*
|
Item
(int nIndex);
����������Returns a string value of the item at the given index. |
Constructor/Destructor Detail |
CEnumeration();
Constructs the enumeration.
virtual ~CEnumeration();
Destroys the enumeration.
Function Detail |
virtual int GetLength() = 0;
Returns a number of items in this enumeration.
virtual const WCHAR *Item(int nIndex) = 0;
Returns a string value of the item at the given index.
nIndex
- the index (zero-based)
|
Unicorn XML Toolkit Version 1.50.00 |
|||||||||
�PREV CLASS�� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |