Return curent element

Return TypeFunction nameArguments
OBJ&hzList::Iter::Element(void)

Declared and defined in file: hzTmplList.h

Function Logic:

0:START 1:unknown 2:Return dflt 3:Return m_pCurr->m_Obj

Function body:

OBJ& hzList::Iter::Element (void)
       {
           //  Return curent element
           if (!m_pCurr)
               return dflt ;
           return m_pCurr->m_Obj ;
       }