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


Loading...
Searching...
No Matches
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
12namespace Lucene {
13
20public:
22 virtual ~RawPostingList();
23
25
26public:
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
#define LUCENE_CLASS(Name)
Definition LuceneObject.h:24
Base class for all Lucene classes.
Definition LuceneObject.h:31
This is the base class for an in-memory posting list, keyed by a Token. TermsHash maintains a hash ta...
Definition RawPostingList.h:19
int32_t textStart
Definition RawPostingList.h:29
static const int32_t BYTES_SIZE
Definition RawPostingList.h:27
int32_t intStart
Definition RawPostingList.h:30
int32_t byteStart
Definition RawPostingList.h:31
Definition AbstractAllTermDocs.h:12

clucene.sourceforge.net