Return TypeFunction nameArguments
hdbIdset&hdbIdset::operator=(const hdbIdset&,)

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

Function Logic:

0:START 1:mx==op.mx 2:Return *this 3:hdbIdset::Clear mx 4:mx 5:items 6:Return *this

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 ;
}