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