Clear the name-ring of all keys and elements Arguments: None Returns: None
| Return Type | Function name | Arguments |
|---|---|---|
| void | hzNamering::Clear | (void) |
Declared in file: hzNamering.h
Defined in file : hzNamering.cpp
Function Logic:
Function body:
void hzNamering::Clear (void)
{
// Clear the name-ring of all keys and elements
//
// Arguments: None
// Returns: None
_hzfunc("hzNamering::Clear") ;
mx->m_Lock.LockWrite() ;
mx->m_Roots.Clear() ;
mx->m_Members.Clear() ;
mx->m_Lock.Unlock() ;
}