bz2inputstream.h
来自「lucene in java大家一定听说过了」· C头文件 代码 · 共 36 行
H
36 行
/*------------------------------------------------------------------------------* 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 BZ2INPUTSTREAM_H#define BZ2INPUTSTREAM_H#include "bufferedstream.h"#include <bzlib.h>namespace jstreams {class BZ2InputStream : public BufferedInputStream<char> {private: bool allocatedBz; bz_stream* bzstream; StreamBase<char> *input; void dealloc(); void readFromStream(); bool checkMagic();protected: int32_t fillBuffer(char* start, int32_t space);public: BZ2InputStream(StreamBase<char>* input); ~BZ2InputStream(); static bool checkHeader(const char* data, int32_t datasize);};} // end namespace jstreams#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?