Close down the enumerated index. De-allocate the bitmaps and clear the bitmap array. Arguments: None Returns: None

Return TypeFunction nameArguments
voidhdbIndexEnum::Halt(void)

Declared in file: hzDatabase.h
Defined in file : hdbIndex.cpp

Function Logic:

0:START 1:unknown 2:pS pS 3:items 4: No text

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() ;
}