| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hdbIndexEnum::Delete | (unsigned int,const hzAtom&,) |
Declared in file: hzDatabase.h
Defined in file : hdbIndex.cpp
Function Logic:
Function body:
hzEcode hdbIndexEnum::Delete (unsigned int objId, const hzAtom& Key)
{
hdbIdset* pS ;
uint32_t val ;
hzEcode rc = E_OK ;
val = (uint32_t) Key ;
if (val <&eq; 0|| val > m_Maps.Count())
return E_RANGE ;
pS = m_Maps[val] ;
pS->Delete(objId) ;
return rc ;
}