| Return Type | Function name | Arguments |
|---|---|---|
| bool | hdbClass::operator== | (const hdbClass&,) |
Declared in file: hzDatabase.h
Defined in file : hdbClass.cpp
Function Logic:
Function body:
bool hdbClass::operator== (const hdbClass& op)
{
_hzfunc("hdbClass::operator==") ;
const hdbMember* pMA ;
const hdbMember* pMB ;
uint32_t nIndex ;
if (MbrCount() != op.MbrCount())
return false ;
for (nIndex = 0; nIndex < m_arrMembers.Count() ; nIndex++)
{
pMA = m_arrMembers[nIndex] ;
pMB = op.m_arrMembers[nIndex] ;
if (pMA != pMB)
return false ;
}
return true ;
}