mirror of
https://github.com/SabreTools/SabreTools.Compression.git
synced 2026-02-12 21:32:07 +00:00
17 lines
385 B
C#
17 lines
385 B
C#
namespace SabreTools.Compression.libmspack.CAB
|
|
{
|
|
/// <summary>
|
|
/// TODO
|
|
/// </summary>
|
|
public class Compressor : BaseCompressor
|
|
{
|
|
/// <summary>
|
|
/// Creates a new CAB compressor
|
|
/// </summary>
|
|
public Compressor()
|
|
{
|
|
this.system = new CABSystem();
|
|
this.error = MSPACK_ERR.MSPACK_ERR_OK;
|
|
}
|
|
}
|
|
} |