From e739fd6fd596d6eef9db4efb2c957ae7f67dd816 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 22 Sep 2023 23:41:06 -0400 Subject: [PATCH] Create Process method, make it throw for now --- Quantum/Decompressor.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Quantum/Decompressor.cs b/Quantum/Decompressor.cs index 6fbbdcd..5bd338b 100644 --- a/Quantum/Decompressor.cs +++ b/Quantum/Decompressor.cs @@ -120,6 +120,15 @@ namespace SabreTools.Compression.Quantum this.CS_C = 0; } + /// + /// Process the stream and return the decompressed output + /// + /// Byte array representing the decompressed data, null on error + public byte[] Process() + { + throw new NotImplementedException(); + } + /// /// Create and initialize a model base on the start symbol and length ///