Set a block iterator current block pointer to the current block in the chain
| Return Type | Function name | Arguments |
|---|---|---|
| hzChain::BlkIter& | hzChain::BlkIter::operator= | (hzChain&,) |
Declared and defined in file: hzChain.h
Function Logic:
Function body:
hzChain::BlkIter& hzChain::BlkIter::operator= (hzChain& I)
{
// Set a block iterator current block pointer to the current block in the chain
if (I.mx)
m_block = I.mx->m_Begin ;
else
m_block = 0;
return *this ;
}