Delete from m_Roots only (not implimented)

Return TypeFunction nameArguments
hzEcodehzNamering::DelMember(hzString&,)

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

Function Logic:

0:START 1:items items 2:Return rc

Function body:

hzEcode hzNamering::DelMember (hzString& root)
{
   //  Delete from m_Roots only (not implimented)
   //  
   //  Arguments: 1) root The name of the root
   //  
   //  Returns: E_NOTFOUND If the supplied member does not exist
   //     E_OK  If the member was deleted
   _hzfunc("hzNamering::DelMember") ;
   hzEcode rc = E_OK ;     //  Return code
   mx->m_Lock.LockWrite() ;
       //  STUB
   mx->m_Lock.Unlock() ;
   return rc ;
}