Return TypeFunction nameArguments
voidhzDocHtml::Clear(void)

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

Function Logic:

0:START 1:nIndex 2:nIndex 3:pNode pNode 4:hzVect::Clear hzVect::Clear hzSet::Clear hzSet::Clear m_pRoot m_pHead m_pBody 5: No text

Function body:

void hzDocHtml::Clear (void)
{
   hzHtmElem*  pNode ;
   uint32_t    nIndex ;
   for (nIndex = 0; nIndex < m_vecTags.Count() ; nIndex++)
   {
       pNode = m_vecTags[nIndex] ;
       delete pNode ;
   }
   m_vecTags.Clear() ;
   m_vecLinks.Clear() ;
   m_setLinks.Clear() ;
   m_Emails.Clear() ;
   m_pRoot = 0;
   m_pHead = 0;
   m_pBody = 0;
}