|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |
class CEnumerator: public CInterface { public: CEnumerator() { } virtual ~CEnumerator() { } public: virtual bool Next(CPropertyName &propertyName) = 0; };
The abstract interface to enumerators of object properties.
CPropertyName
Constructor/Destructor Summary | |
CEnumerator
();
����������Constructs the enumerator. |
|
~CEnumerator
();
����������Destroys the enumerator. |
Function Summary | |
bool
|
Next
(CPropertyName &propertyName);
����������Returns a name of the next property in the property list of the object. |
Constructor/Destructor Detail |
CEnumerator();
Constructs the enumerator.
virtual ~CEnumerator();
Destroys the enumerator.
Function Detail |
virtual bool Next(CPropertyName &propertyName) = 0;
Returns a name of the next property in the property list of the object.
propertyName
- on return, the next property name in
the property list of the object; unspecified, if the end
of the property list is encounteredtrue
if the next property name
was successfully obtained;
false
if the end of the property list is encountered
|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |