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


 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
NormsWriterPerThread.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2011 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 NORMSWRITERPERTHREAD_H
8 #define NORMSWRITERPERTHREAD_H
9 
11 
12 namespace Lucene
13 {
15  {
16  public:
17  NormsWriterPerThread(DocInverterPerThreadPtr docInverterPerThread, NormsWriterPtr normsWriter);
18  virtual ~NormsWriterPerThread();
19 
21 
22  public:
25 
26  public:
27  virtual InvertedDocEndConsumerPerFieldPtr addField(DocInverterPerFieldPtr docInverterPerField, FieldInfoPtr fieldInfo);
28  virtual void abort();
29  virtual void startDocument();
30  virtual void finishDocument();
31 
32  bool freeRAM();
33  };
34 }
35 
36 #endif

clucene.sourceforge.net