Purpose: Export tree as an article set
| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hdsNavtree::ExportArticleSet | (hzChain&,) |
Declared in file: hzDissemino.h
Defined in file : hdsNavtree.cpp
Function Logic:
Function body:
hzEcode hdsNavtree::ExportArticleSet (hzChain& Z)
{
// Purpose: Export tree as an article set
//
// Arguments: 1) J The chain in which tree is being built
//
// Returns: E_NODATA If the tree is empty
// E_OK If the tree is exported to the supplied chain
_hzfunc("hdsNavtree::ExportArtcleSet") ;
if (!m_ItemsByName.Count())
return E_NODATA ;
hzString root ; // Blank string
_procArticle(Z, root) ;
return E_OK ;
}