Files

23 lines
548 B
C#
Raw Permalink Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.Compression.Quantum
2023-09-04 00:11:04 -04:00
{
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/cabinet/cabinet.h"/>
/// <see href="http://www.russotto.net/quantumcomp.html"/>
public sealed class Model
{
public int TimeToReorder;
public int Entries;
2023-09-04 21:14:41 -04:00
#if NET48
2023-09-04 00:11:04 -04:00
public ModelSymbol[] Symbols;
2023-09-04 21:14:41 -04:00
#else
public ModelSymbol[]? Symbols;
#endif
2023-09-04 00:11:04 -04:00
2023-09-04 21:14:41 -04:00
#if NET48
2023-09-04 00:11:04 -04:00
public ushort[] LookupTable = new ushort[256];
2023-09-04 21:14:41 -04:00
#else
public ushort[]? LookupTable = new ushort[256];
#endif
2023-09-04 00:11:04 -04:00
}
}