Advance the hzChain block iterator by one chain block Arguments: None

Return TypeFunction nameArguments
hzChain::BlkIter&hzChain::BlkIter::Roll(void)

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

Function Logic:

0:START 1:zp zp m_block 2:Return *this

Function body:

hzChain::BlkIter& hzChain::BlkIter::Roll (void)
{
   //  Advance the hzChain block iterator by one chain block
   //  
   //  Arguments: None
   //  Returns: Reference to this chain block iterator
   _hzfunc("hzChain::BlkIter::Roll") ;
   _zblk*  zp ;    //  Block pointer
   zp = (_zblk*) m_block ;
   m_block = zp = zp->Next() ;
   return *this ;
}