Files
BinaryObjectScanner/BinaryObjectScanner.Models/Compression/Quantum/Model.cs

15 lines
416 B
C#
Raw Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.Compression.Quantum
2022-12-16 10:19:32 -08:00
{
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/cabinet/cabinet.h"/>
2022-12-16 10:19:32 -08:00
/// <see href="http://www.russotto.net/quantumcomp.html"/>
public sealed class Model
2022-12-16 10:19:32 -08:00
{
public int TimeToReorder;
2022-12-16 10:19:32 -08:00
public int Entries;
public ModelSymbol[] Symbols;
public ushort[] LookupTable = new ushort[256];
2022-12-16 10:19:32 -08:00
}
}