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
TermVectorMapper.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 TERMVECTORMAPPER_H
8
#define TERMVECTORMAPPER_H
9
10
#include "
LuceneObject.h
"
11
12
namespace
Lucene {
13
18
class
LPPAPI
TermVectorMapper
:
public
LuceneObject
{
19
public
:
23
TermVectorMapper
(
bool
ignoringPositions =
false
,
bool
ignoringOffsets =
false
);
24
25
virtual
~
TermVectorMapper
();
26
27
LUCENE_CLASS
(
TermVectorMapper
);
28
29
protected
:
30
bool
ignoringPositions;
31
bool
ignoringOffsets
;
32
33
public
:
42
virtual
void
setExpectations(
const
String& field, int32_t numTerms,
bool
storeOffsets,
bool
storePositions) = 0;
43
49
virtual
void
map(
const
String& term, int32_t frequency,
Collection<TermVectorOffsetInfoPtr>
offsets,
Collection<int32_t>
positions) = 0;
50
54
virtual
bool
isIgnoringPositions();
55
57
virtual
bool
isIgnoringOffsets();
58
68
virtual
void
setDocumentNumber(int32_t documentNumber);
69
};
70
71
}
72
73
#endif
clucene.sourceforge.net