Return Type | Function name | Arguments |
---|---|---|
hzEcode | hzDocHtml::Import | (const hzString&,) |
Declared in file: hzDocument.h
Defined in file : hzDocHtml.cpp
Function Logic:
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 ; }