| Return Type | Function name | Arguments |
|---|---|---|
| unsigned int | hdbIdset::NoNodes | (void) |
Declared in file: hzDatabase.h
Defined in file : hdbIdset.cpp
Function Logic:
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() ;
}