Reports the number of _idsNodes

Return TypeFunction nameArguments
uint32_thzIntset::NoNodes(void)

Declared in file: hzIntset.h
Defined in file : hzIntset.cpp

Function Logic:

0:START 1:unknown 2:Return 0 3:unknown 4:Return 0 5:unknown 6:Return 1 7:pNodes 8:Return pNodes->Count()

Function body:

uint32_t hzIntset::NoNodes (void)
{
   //  Reports the number of _idsNodes
   //  
   //  Arguments: None
   //  Returns: Number of _idsNodes
   if (!mx)
       return 0;
   if (mx->m_pData)
       return 0;
   if (!mx->m_bVect)
       return 1;
   hzVect<_idsNode*>*  pNodes ;    //  Vector of nodes
   pNodes = (hzVect<_idsNode*>*) mx->m_pData ;
   return pNodes->Count() ;
}