mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 13:14:59 -06:00
39 lines
853 B
C++
Executable File
39 lines
853 B
C++
Executable File
// ShrinkDecoder.h
|
|
|
|
#ifndef __COMPRESS_SHRINK_DECODER_H
|
|
#define __COMPRESS_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
|
|
|
|
HRESULT 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
|