Create Process method, make it throw for now

This commit is contained in:
Matt Nadareski
2023-09-22 23:41:06 -04:00
parent 6b238df5dc
commit e739fd6fd5

View File

@@ -120,6 +120,15 @@ namespace SabreTools.Compression.Quantum
this.CS_C = 0;
}
/// <summary>
/// Process the stream and return the decompressed output
/// </summary>
/// <returns>Byte array representing the decompressed data, null on error</returns>
public byte[] Process()
{
throw new NotImplementedException();
}
/// <summary>
/// Create and initialize a model base on the start symbol and length
/// </summary>