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


 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
FreqProxFieldMergeState.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 FREQPROXFIELDMERGESTATE_H
8 #define FREQPROXFIELDMERGESTATE_H
9 
10 #include "LuceneObject.h"
11 
12 namespace Lucene {
13 
16 public:
18  virtual ~FreqProxFieldMergeState();
19 
21 
22 public:
24  int32_t numPostings;
27 
29  CharArray text;
30  int32_t textOffset;
31 
34 
35  int32_t docID;
36  int32_t termFreq;
37 
38 protected:
39  int32_t postingUpto;
40 
41 public:
42  bool nextTerm();
43  bool nextDoc();
44 };
45 
46 }
47 
48 #endif

clucene.sourceforge.net