namespace ICSharpCode.SharpZipLib.Zip.Compression
{
	/// 
	/// This class stores the pending output of the Deflater.
	/// 
	/// author of the original java version : Jochen Hoenicke
	/// 
	public class DeflaterPending : PendingBuffer
	{
		/// 
		/// Construct instance with default buffer size
		/// 
		public DeflaterPending() : base(DeflaterConstants.PENDING_BUF_SIZE)
		{
		}
	}
}