Return TypeFunction nameArguments
unsigned inthdbIdset::NoNodes(void)

Declared in file: hzDatabase.h
Defined in file : hdbIdset.cpp

Function Logic:

0:START 1:!mx 2:Return 0 3:mx->m_pData 4:Return 0 5:!mx->m_bVect 6:Return 1 7:pNodes 8:Return pNodes->Count()

Function body:

unsigned int hdbIdset::NoNodes (void)
{
   if (!mx)
       return 0;
   if (mx->m_pData)
       return 0;
   if (!mx->m_bVect)
       return 1;
   hzVect<_idsNode*>*  pNodes ;
   pNodes = (hzVect<_idsNode*>*) mx->m_pData ;
   return pNodes->Count() ;
}