mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-13 21:22:22 +00:00
10 lines
200 B
C#
10 lines
200 B
C#
|
|
namespace SharpCompress.Compressor.Rar.decode
|
||
|
|
{
|
||
|
|
internal class DistDecode : Decode
|
||
|
|
{
|
||
|
|
internal DistDecode()
|
||
|
|
: base(new int[Compress.DC])
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|