Lucene++ - a full-featured, c++ search engine
API Documentation
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
include
ISOLatin1AccentFilter.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 ISOLATIN1ACCENTFILTER_H
8
#define ISOLATIN1ACCENTFILTER_H
9
10
#include "
TokenFilter.h
"
11
12
namespace
Lucene {
13
21
class
LPPAPI
ISOLatin1AccentFilter
:
public
TokenFilter
{
22
public
:
23
ISOLatin1AccentFilter
(
const
TokenStreamPtr
& input);
24
virtual
~
ISOLatin1AccentFilter
();
25
26
LUCENE_CLASS
(
ISOLatin1AccentFilter
);
27
28
protected
:
29
CharArray output;
30
int32_t
outputPos
;
31
TermAttributePtr
termAtt
;
32
33
public
:
34
virtual
bool
incrementToken();
35
37
void
removeAccents(
const
wchar_t
* input, int32_t length);
38
};
39
40
}
41
42
#endif
clucene.sourceforge.net