📄 shrinkdecoder.h
字号:
// ShrinkDecoder.h#ifndef __SHRINK_DECODER_H#define __SHRINK_DECODER_H#include "../../../Common/MyCom.h"#include "../../ICoder.h"namespace NCompress {namespace NShrink {const int kNumMaxBits = 13; const UInt32 kNumItems = 1 << kNumMaxBits; class CDecoder : public ICompressCoder, public CMyUnknownImp{ UInt16 _parents[kNumItems]; Byte _suffixes[kNumItems]; Byte _stack[kNumItems]; bool _isFree[kNumItems]; bool _isParent[kNumItems];public: MY_UNKNOWN_IMP STDMETHOD(CodeReal)(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress); STDMETHOD(Code)(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);};}}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -