Lucene++ - a full-featured, c++ search engine
API Documentation


 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
TokenFilter.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2011 Alan Wright. All rights reserved.
3 // Distributable under the terms of either the Apache License (Version 2.0)
4 // or the GNU Lesser General Public License.
6 
7 #ifndef TOKENFILTER_H
8 #define TOKENFILTER_H
9 
10 #include "TokenStream.h"
11 
12 namespace Lucene
13 {
18  class LPPAPI TokenFilter : public TokenStream
19  {
20  protected:
23 
24  public:
25  virtual ~TokenFilter();
26 
28 
29  protected:
31  TokenStreamPtr input;
32 
33  public:
36  virtual void end();
37 
39  virtual void close();
40 
42  virtual void reset();
43  };
44 }
45 
46 #endif

clucene.sourceforge.net