| Return Type | Function name | Arguments |
|---|---|---|
| void | hzHtmElem::FindSubnodes | (hzVect<hzHtmElem*>&,const char*,bool,) |
Declared in file: hzDocument.h
Defined in file : hzDocHtml.cpp
Function Logic:
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) ;
}