#ifndef __LUCENE_SEARCH_PHRASE_POSITIONS__ #define __LUCENE_SEARCH_PHRASE_POSITIONS__ #include @interface LCPhrasePositions: NSObject { int doc; int position; int count; int offset; id *tp; LCPhrasePositions *next; } - (id) initWithTermPositions: (id ) t offset: (int) o; - (BOOL) next; - (BOOL) skipTo: (int) target; - (void) firstPosition; - (BOOL) nextPosition; @end #endif /* __LUCENE_SEARCH_PHRASE_POSITIONS__ */