📄 subinputstream.h
字号:
/*------------------------------------------------------------------------------* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -