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
TermVectorOffsetInfo.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 TERMVECTOROFFSETINFO_H
8
#define TERMVECTOROFFSETINFO_H
9
10
#include "
LuceneObject.h
"
11
12
namespace
Lucene {
13
17
class
LPPAPI
TermVectorOffsetInfo
:
public
LuceneObject
{
18
public
:
19
TermVectorOffsetInfo
(int32_t startOffset = 0, int32_t endOffset = 0);
20
virtual
~
TermVectorOffsetInfo
();
21
22
LUCENE_CLASS
(
TermVectorOffsetInfo
);
23
24
protected
:
25
int32_t
startOffset
;
26
int32_t
endOffset
;
27
28
public
:
30
static
const
Collection<TermVectorOffsetInfoPtr>
EMPTY_OFFSET_INFO();
31
33
int32_t getEndOffset();
34
void
setEndOffset(int32_t endOffset);
35
37
int32_t getStartOffset();
38
void
setStartOffset(int32_t startOffset);
39
42
virtual
bool
equals(
const
LuceneObjectPtr
& other);
43
44
virtual
int32_t hashCode();
45
};
46
47
}
48
49
#endif
clucene.sourceforge.net