| Return Type | Function name | Arguments |
|---|---|---|
| hdbIdset& | hdbIdset::operator= | (const hdbIdset&,) |
Declared in file: hzDatabase.h
Defined in file : hdbIdset.cpp
Function Logic:
Function body:
hdbIdset& hdbIdset::operator= (const hdbIdset& op)
{
_hzfunc("hdbIdset::operator=") ;
if (mx == op.mx)
return *this ;
Clear() ;
mx = op.mx ;
if (mx)
mx->m_nCopies++ ;
return *this ;
}