#ifndef __LUCENE_INDEX_FIELDS_READER__ #define __LUCENE_INDEX_FIELDS_READER__ #include #include "LCFieldInfos.h" @class LCIndexInput; @interface LCFieldsReader: NSObject { LCFieldInfos *fieldInfos; LCIndexInput *fieldsStream; LCIndexInput *indexStream; int size; } - (id) initWithDirectory: (id ) d segment: (NSString *) segment fieldInfos: (LCFieldInfos *) fn; - (void) close; - (int) size; - (LCDocument *) document: (int) n; @end #endif /* __LUCENE_INDEX_FIELDS_READER__ */