2023-03-07 16:59:14 -05:00
|
|
|
namespace BinaryObjectScanner.Models.Compression.Quantum
|
2022-12-16 10:19:32 -08:00
|
|
|
{
|
2023-01-01 22:02:54 -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"/>
|
2023-01-01 22:02:54 -08:00
|
|
|
public sealed class Model
|
2022-12-16 10:19:32 -08:00
|
|
|
{
|
2023-01-02 10:17:27 -08:00
|
|
|
public int TimeToReorder;
|
2022-12-16 10:19:32 -08:00
|
|
|
|
2023-01-01 22:02:54 -08:00
|
|
|
public int Entries;
|
|
|
|
|
|
|
|
|
|
public ModelSymbol[] Symbols;
|
|
|
|
|
|
|
|
|
|
public ushort[] LookupTable = new ushort[256];
|
2022-12-16 10:19:32 -08:00
|
|
|
}
|
|
|
|
|
}
|