subinputstream.h

来自「lucene in java大家一定听说过了」· C头文件 代码 · 共 29 行

H
29
字号
/*------------------------------------------------------------------------------* Copyright (C) 2003-2006 Jos van den Oever* * Distributable under the terms of either the Apache License (Version 2.0) or * the GNU Lesser General Public License, as specified in the COPYING file.------------------------------------------------------------------------------*/#ifndef SUBINPUTSTREAM_H#define SUBINPUTSTREAM_H#include "streambase.h"namespace jstreams {class SubInputStream : public StreamBase<char> {private:    const int64_t offset;    StreamBase<char> *input;public:    SubInputStream(StreamBase<char> *input, int64_t size=-1);    int32_t read(const char*& start, int32_t min, int32_t max);    int64_t mark(int32_t readlimit);    int64_t reset(int64_t newpos);    int64_t skip(int64_t ntoskip);};} //end namespace jstreams#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?