Close down the enumerated index. De-allocate the bitmaps and clear the bitmap array. Arguments: None Returns: None
| Return Type | Function name | Arguments |
|---|---|---|
| void | hdbIndexEnum::Halt | (void) |
Declared in file: hzDatabase.h
Defined in file : hdbIndex.cpp
Function Logic:
Function body:
void hdbIndexEnum::Halt (void)
{
// Close down the enumerated index. De-allocate the bitmaps and clear the bitmap array.
//
// Arguments: None
// Returns: None
hzIntset* pS ; // Allocated bitmap
uint32_t n ; // Allowed value iterator
for (n = 0; n < m_Maps.Count() ; n++)
{
pS = m_Maps.GetObj(n) ;
delete pS ;
}
m_Maps.Clear() ;
}