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


 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
CachingTokenFilter.h
Go to the documentation of this file.
1 
2 // Copyright (c) 2009-2014 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 CACHINGTOKENFILTER_H
8 #define CACHINGTOKENFILTER_H
9 
10 #include "TokenFilter.h"
11 
12 namespace Lucene {
13 
19 class LPPAPI CachingTokenFilter : public TokenFilter {
20 public:
21  CachingTokenFilter(const TokenStreamPtr& input);
22  virtual ~CachingTokenFilter();
23 
25 
26 protected:
30 
31 public:
32  virtual bool incrementToken();
33  virtual void end();
34  virtual void reset();
35 
36 protected:
37  void fillCache();
38 };
39 
40 }
41 
42 #endif

clucene.sourceforge.net