Return TypeFunction nameArguments
hzEcodehdsArticleStd::AddVisent(hdsVE*,)

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

Function Logic:

0:START 1:unknown 2:items 3:unknown 4:items 5:unknown 6:unknown 7:items 8:items 9:Return E_OK

Function body:

hzEcode hdsArticleStd::AddVisent (hdsVE* pChild)
{
   //  Category: Dissemino System Initialization
   //  
   _hzfunc("hdsArticle::AddVisent") ;
   uint32_t    nV ;    //  VE iterator
   if (!pChild)
       hzexit(E_ARGUMENT, "%s: Null child supplied to article", *m_Title) ;
   if (m_flagVE & VE_COMPLETE)
       hzexit(E_SEQUENCE, "%s: Article is already complete, cannot add %s", *m_Title, *pChild->m_Tag) ;
   //  Run through array looking for duplicates
   for (nV = 0; nV < m_VEs.Count() ; nV++)
   {
       if (m_VEs[nV] == pChild)
           hzexit(E_CORRUPT, "%s: Child %s is already in include block", *m_Title, *pChild->m_Tag) ;
   }
   //  threadLog("ADDED CHILD %s TO ARTICLE %p %s\n", *pChild->m_Tag, this, *m_Refname) ;
   m_VEs.Add(pChild) ;
   return E_OK ;
}