Delete from m_Root then delete all references to it from m_Roots (not implimented)

Return TypeFunction nameArguments
hzEcodehzNamering::DelRoot(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::DelRoot (hzString& root)
{
   //  Delete from m_Root then delete all references to it from m_Roots (not implimented)
   //  
   //  Arguments: 1) root The name of the root
   //  
   //  Returns: E_NOTFOUND If the supplied root does not exist
   //     E_OK  If the root was deleted
   _hzfunc("hzNamering::DelRoot") ;
   hzEcode rc = E_OK ;     //  Return code
   mx->m_Lock.LockWrite() ;
       //  STUB
   mx->m_Lock.Unlock() ;
   return rc ;
}