Add an object to the end of the list
| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hzList::Add | (OBJ,) |
Declared and defined in file: hzTmplList.h
Function Logic:
Function body:
hzEcode hzList::Add (OBJ obj)
{
// Add an object to the end of the list
_hzfunc_ct("hzList::Add") ;
if (!mx)
{
if (!(mx = new _list_ca()))
Fatal("hzList::Add. Container allocation failure") ;
}
return mx->_add(obj) ;
}