Return TypeFunction nameArguments
hzEcodehzDocXml::Export(hzChain&,)

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

Function Logic:

0:START 1:hzChain::Clear 2:!m_pRoot 3:Return E_NODATA 4:m_Info.m_urlReq 5:hzChain::Printf 6:*m_Info.m_urlAct 7:hzChain::Printf 8:hzXmlNode::Export_r 9:Return E_OK

Function body:

hzEcode hzDocXml::Export (hzChain& Z)
{
   _hzfunc("hzDocXml::Export") ;
   uint32_t    relLine = 0;
   Z.Clear() ;
   if (!m_pRoot)
       { threadLog("Empty document\n") ; return E_NODATA ; }
   if (m_Info.m_urlReq)    Z.Printf("URL (req): %s\n", *m_Info.m_urlReq) ;
   if (*m_Info.m_urlAct)   Z.Printf("URL (act): %s\n", *m_Info.m_urlAct) ;
   m_pRoot->Export_r(this, Z, relLine) ;
   return E_OK ;
}