Advance the iterator

Return TypeFunction nameArguments
voidhzAttrset::Advance(void)

Declared in file: hzDocument.h
Defined in file : hzDocXml.cpp

Function Logic:

0:START 1:m_Current==m_Final 2:m_Pair m_Pair 3:items hzMapM::GetObj m_Pair 4: No text

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) ;
   }
}