Return TypeFunction nameArguments
hzEcodehzDocHtml::Import(const hzString&,)

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

Function Logic:

0:START 1:OpenInputStrm rc 2:rc==E_OK 3:items close hzDocHtml::Load rc 4:Return rc

Function body:

hzEcode hzDocHtml::Import (const hzString& path)
{
   _hzfunc("hzDocHtml::Import") ;
   ifstream    is ;
   hzChain     Z ;
   hzEcode     rc ;
   rc = OpenInputStrm(is, path) ;
   if (rc == E_OK)
   {
       Z << is ;
       is.close() ;
       rc = Load(Z) ;
   }
   return rc ;
}