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


 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
LowerCaseTokenizer.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 LOWERCASETOKENIZER_H
8 #define LOWERCASETOKENIZER_H
9 
10 #include "LetterTokenizer.h"
11 
12 namespace Lucene
13 {
21  class LPPAPI LowerCaseTokenizer : public LetterTokenizer
22  {
23  public:
26 
29 
32 
33  virtual ~LowerCaseTokenizer();
34 
36 
37  public:
39  virtual wchar_t normalize(wchar_t c);
40  };
41 }
42 
43 #endif

clucene.sourceforge.net