Advance the iterator
| Return Type | Function name | Arguments |
|---|---|---|
| void | hzAttrset::Advance | (void) |
Declared in file: hzDocument.h
Defined in file : hzDocXml.cpp
Function Logic:
Function body:
void hzAttrset::Advance (void)
{
// Advance the iterator
if (m_Current == m_Final)
m_Pair.name = m_Pair.value = (char*) 0;
else
{
m_Current++ ;
m_Pair = m_pHostDoc->m_NodeAttrs.GetObj(m_Current) ;
}
}