Delete from m_Root then delete all references to it from m_Roots (not implimented)
| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hzNamering::DelRoot | (hzString&,) |
Declared in file: hzNamering.h
Defined in file : hzNamering.cpp
Function Logic:
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 ;
}