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
RawPostingList.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 RAWPOSTINGLIST_H
8
#define RAWPOSTINGLIST_H
9
10
#include "
LuceneObject.h
"
11
12
namespace
Lucene {
13
19
class
RawPostingList
:
public
LuceneObject
{
20
public
:
21
RawPostingList
();
22
virtual
~RawPostingList
();
23
24
LUCENE_CLASS
(
RawPostingList
);
25
26
public
:
27
static
const
int32_t
BYTES_SIZE
;
28
29
int32_t
textStart
;
30
int32_t
intStart
;
31
int32_t
byteStart
;
32
};
33
34
}
35
36
#endif
clucene.sourceforge.net