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


 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
CharStream.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 CHARSTREAM_H
8 #define CHARSTREAM_H
9 
10 #include "Reader.h"
11 
12 namespace Lucene
13 {
18  class LPPAPI CharStream : public Reader
19  {
20  public:
21  virtual ~CharStream();
23 
24  public:
29  virtual int32_t correctOffset(int32_t currentOff) = 0;
30  };
31 }
32 
33 #endif

clucene.sourceforge.net