DeflaterPending.cs 422 B

1234567891011121314151617
  1. namespace ICSharpCode.SharpZipLib.Zip.Compression
  2. {
  3. /// <summary>
  4. /// This class stores the pending output of the Deflater.
  5. ///
  6. /// author of the original java version : Jochen Hoenicke
  7. /// </summary>
  8. public class DeflaterPending : PendingBuffer
  9. {
  10. /// <summary>
  11. /// Construct instance with default buffer size
  12. /// </summary>
  13. public DeflaterPending() : base(DeflaterConstants.PENDING_BUF_SIZE)
  14. {
  15. }
  16. }
  17. }