Return TypeFunction nameArguments
voidhzHtmElem::FindSubnodes(hzVect<hzHtmElem*>&,const char*,bool,)

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

Function Logic:

0:START 1:hzHtmElem::GetTree pTree 2:!pTree 3:Fatal 4:hzVect::Clear hzHtmElem::_testnode 5: No text

Function body:

void hzHtmElem::FindSubnodes (hzVect<hzHtmElem*>& result, const char* srchExp, bool bLog)
{
   hzDocHtml*  pTree ;
   uint32_t    nLimit = 0;
   pTree = GetTree() ;
   if (!pTree)
       Fatal("No tree - aborting\n") ;
   result.Clear() ;
   _testnode(result, srchExp, nLimit, 0,bLog) ;
}