namespace SharpCompress.Compressors.Rar.UnpackV1.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; }
/// returns the decode num array
/// decodeNum
///
internal int[] DecodeNum { get; }
/// returns the decodePos array
/// decodePos
///
internal int[] DecodePos { get; }
internal int MaxNum { get; set; }
}
}