Return curent element
| Return Type | Function name | Arguments |
|---|---|---|
| OBJ& | hzList::Iter::Element | (void) |
Declared and defined in file: hzTmplList.h
Function Logic:
Function body:
OBJ& hzList::Iter::Element (void)
{
// Return curent element
if (!m_pCurr)
return dflt ;
return m_pCurr->m_Obj ;
}