#include <CADIHash.h>
Public Member Functions | |
| bool | output () const |
modification history:
: Wolfgang Müller
Changes: HM 090399 created the documentation
compiler defines used:
A hash for additional document information (hashed by document ID)
Definition at line 53 of file CADIHash.h.
| bool CADIHash::output | ( | ) | const [inline] |
Writing ADI for each document to its own
Definition at line 63 of file CADIHash.h.
Referenced by CAcIFFileSystem::DIDToFeatureList(), CAcIFFileSystem::generateInvertedFile(), and CAcIFFileSystem::newGenerateInvertedFile().
00063 { 00064 bool lRetVal=true; 00065 00066 for(const_iterator i=begin(); 00067 i!=end(); 00068 i++){ 00069 lRetVal= lRetVal && (*i).second.output(); 00070 } 00071 00072 return lRetVal; 00073 }
1.5.6