/Utilities/Compression/Deflaters/DeflaterPending.cs
C# | 22 lines | 12 code | 1 blank | 9 comment | 0 complexity | dfb795ecb41675ef1480b2283ec6f342 MD5 | raw file
Possible License(s): Apache-2.0
- // Based on Mike Krueger's SharpZipLib, Copyright (C) 2001 (GNU license).
- // Authors of the original java version: Jochen Hoenicke, John Leuner
- // See http://www.ISeeSharpCode.com for more information.
-
- namespace Delta.Utilities.Compression.Deflaters
- {
- /// <summary>
- /// This class stores the pending output of the Deflater.
- /// </summary>
- public class DeflaterPending : PendingBuffer
- {
- #region Constructors
- /// <summary>
- /// Create deflater pending
- /// </summary>
- public DeflaterPending()
- : base(DeflaterConstants.PendingBufferSize)
- {
- }
- #endregion
- }
- }