Add an object to the end of the list

Return TypeFunction nameArguments
hzEcodehzList::Add(OBJ,)

Declared and defined in file: hzTmplList.h

Function Logic:

0:START 1:unknown 2:unknown 3:unknown 4:items 5:Return mx->_add(obj)

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) ;
   }