PageRenderTime 45ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/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
  1. // Based on Mike Krueger's SharpZipLib, Copyright (C) 2001 (GNU license).
  2. // Authors of the original java version: Jochen Hoenicke, John Leuner
  3. // See http://www.ISeeSharpCode.com for more information.
  4. namespace Delta.Utilities.Compression.Deflaters
  5. {
  6. /// <summary>
  7. /// This class stores the pending output of the Deflater.
  8. /// </summary>
  9. public class DeflaterPending : PendingBuffer
  10. {
  11. #region Constructors
  12. /// <summary>
  13. /// Create deflater pending
  14. /// </summary>
  15. public DeflaterPending()
  16. : base(DeflaterConstants.PendingBufferSize)
  17. {
  18. }
  19. #endregion
  20. }
  21. }