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


RawPostingList.h
Go to the documentation of this file.
1 // 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:
22  virtual ~RawPostingList();
23 
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
Lucene::RawPostingList::RawPostingList
RawPostingList()
Lucene::RawPostingList::~RawPostingList
virtual ~RawPostingList()
Lucene::RawPostingList
This is the base class for an in-memory posting list, keyed by a Token. TermsHash maintains a hash ta...
Definition: RawPostingList.h:19
LUCENE_CLASS
#define LUCENE_CLASS(Name)
Definition: LuceneObject.h:24
Lucene::RawPostingList::byteStart
int32_t byteStart
Definition: RawPostingList.h:31
Lucene
Definition: AbstractAllTermDocs.h:12
Lucene::LuceneObject
Base class for all Lucene classes.
Definition: LuceneObject.h:31
Lucene::RawPostingList::intStart
int32_t intStart
Definition: RawPostingList.h:30
Lucene::RawPostingList::BYTES_SIZE
static const int32_t BYTES_SIZE
Definition: RawPostingList.h:24
Lucene::RawPostingList::textStart
int32_t textStart
Definition: RawPostingList.h:29
LuceneObject.h

clucene.sourceforge.net