Delete from m_Roots only (not implimented)
| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hzNamering::DelMember | (hzString&,) |
Declared in file: hzNamering.h
Defined in file : hzNamering.cpp
Function Logic:
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 ;
}