Make this namering equal the operand namering

Return TypeFunction nameArguments
hzNamering&hzNamering::operator=(hzNamering&,)

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

Function Logic:

0:START 1:items items mx items items 2:Return *this

Function body:

hzNamering& hzNamering::operator= (hzNamering& op)
{
   //  Make this namering equal the operand namering
   _hzfunc("hzNamering::op=") ;
   mx->m_Lock.LockWrite() ;
       Clear() ;
       mx = op.mx ;
       mx->m_nNoCopies++ ;
   mx->m_Lock.Unlock() ;
   return *this ;
}