#ifndef __LUCENE_ANALYSIS_TOKENIZER__ #define __LUCENE_ANALYSIS_TOKENIZER__ #include #include "LCTokenStream.h" #include "LCReader.h" /* A token stream specified for LCReader */ @interface LCTokenizer: LCTokenStream { /** The text source for this Tokenizer. */ id input; } - (id) initWithReader: (id ) input; @end #endif /* __LUCENE_ANALYSIS_TOKENIZER__ */