00001 // DeflaterPending.cs 00002 // 00003 // Copyright (C) 2001 Mike Krueger 00004 // Copyright (C) 2004 John Reilly 00005 // 00006 // This file was translated from java, it was part of the GNU Classpath 00007 // Copyright (C) 2001 Free Software Foundation, Inc. 00008 // 00009 // This program is free software; you can redistribute it and/or 00010 // modify it under the terms of the GNU General Public License 00011 // as published by the Free Software Foundation; either version 2 00012 // of the License, or (at your option) any later version. 00013 // 00014 // This program is distributed in the hope that it will be useful, 00015 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 // GNU General Public License for more details. 00018 // 00019 // You should have received a copy of the GNU General Public License 00020 // along with this program; if not, write to the Free Software 00021 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00022 // 00023 // Linking this library statically or dynamically with other modules is 00024 // making a combined work based on this library. Thus, the terms and 00025 // conditions of the GNU General Public License cover the whole 00026 // combination. 00027 // 00028 // As a special exception, the copyright holders of this library give you 00029 // permission to link this library with independent modules to produce an 00030 // executable, regardless of the license terms of these independent 00031 // modules, and to copy and distribute the resulting executable under 00032 // terms of your choice, provided that you also meet, for each linked 00033 // independent module, the terms and conditions of the license of that 00034 // module. An independent module is a module which is not derived from 00035 // or based on this library. If you modify this library, you may extend 00036 // this exception to your version of the library, but you are not 00037 // obligated to do so. If you do not wish to do so, delete this 00038 // exception statement from your version. 00039 00040 namespace ICSharpCode.SharpZipLib.Zip.Compression 00041 { 00042 00048 public class DeflaterPending : PendingBuffer 00049 { 00053 public DeflaterPending() : base(DeflaterConstants.PENDING_BUF_SIZE) 00054 { 00055 } 00056 } 00057 }