Purpose: Export tree as an article set

Return TypeFunction nameArguments
hzEcodehdsNavtree::ExportArticleSet(hzChain&,)

Declared in file: hzDissemino.h
Defined in file : hdsNavtree.cpp

Function Logic:

0:START 1:unknown 2:Return E_NODATA 3:items 4:Return E_OK

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 ;
}