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


 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
DocFieldProcessor.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 DOCFIELDPROCESSOR_H
8 #define DOCFIELDPROCESSOR_H
9 
10 #include "DocConsumer.h"
11 
12 namespace Lucene
13 {
18  {
19  public:
21  virtual ~DocFieldProcessor();
22 
24 
25  public:
30 
31  public:
32  virtual void closeDocStore(SegmentWriteStatePtr state);
34  virtual void abort();
35  virtual bool freeRAM();
37  };
38 }
39 
40 #endif

clucene.sourceforge.net