namespace SharpCompress.Compressor.Rar.decode
{
internal class Decode
{
internal Decode()
: this(new int[2])
{
}
protected Decode(int[] customDecodeNum)
{
DecodeLen = new int[16];
DecodePos = new int[16];
DecodeNum = customDecodeNum;
}
/// returns the decode Length array
/// decodeLength
///
internal int[] DecodeLen
{
get;
private set;
}
/// returns the decode num array
/// decodeNum
///
internal int[] DecodeNum
{
get;
private set;
}
/// returns the decodePos array
/// decodePos
///
internal int[] DecodePos
{
get;
private set;
}
internal int MaxNum
{
get;
set;
}
}
}