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 
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 CHARSTREAM_H
8 #define CHARSTREAM_H
9 
10 #include "Reader.h"
11 
12 namespace Lucene {
13 
18 class LPPAPI CharStream : public Reader {
19 public:
20  virtual ~CharStream();
22 
23 public:
28  virtual int32_t correctOffset(int32_t currentOff) = 0;
29 };
30 
31 }
32 
33 #endif

clucene.sourceforge.net