// // CompressionModules.cs - provides standard accessors for known CompressionModule implementations // // Author: // Michael Becker // // Copyright (c) 2011-2020 Mike Becker's Software // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . namespace UniversalEditor.Compression { /// /// Provides standard accessors for known implementations. /// public static class CompressionModules { /// /// Gets a for handling bzip2 compression. /// /// A for handling bzip2 compression. public static Modules.Bzip2.Bzip2CompressionModule Bzip2 { get; } = new Modules.Bzip2.Bzip2CompressionModule(); /// /// Gets a for handling DEFLATE compression. /// /// A for handling DEFLATE compression. public static Modules.Deflate.DeflateCompressionModule Deflate { get; } = new Modules.Deflate.DeflateCompressionModule(); /// /// Gets a for handling gzip compression. /// /// A for handling gzip compression. public static Modules.Gzip.GzipCompressionModule Gzip { get; } = new Modules.Gzip.GzipCompressionModule(); /// /// Gets a for handling zlib compression. /// /// A for handling zlib compression. public static Modules.Zlib.ZlibCompressionModule Zlib { get; } = new Modules.Zlib.ZlibCompressionModule(); /// /// Gets a for handling LZRW1 compression. /// /// A for handling LZRW1 compression. public static Modules.LZRW1.LZRW1CompressionModule LZRW1 { get; } = new Modules.LZRW1.LZRW1CompressionModule(); } }