Example #1
0
 public FastEncoder(bool doGZip) {
     this.usingGzip = doGZip;
     this.inputWindow = new FastEncoderWindow();
     this.inputBuffer = new DeflateInput();
     this.output = new Output();
     this.currentMatch = new Match();
 }
Example #2
0
 public FastEncoder(bool doGZip)
 {
     this.usingGzip    = doGZip;
     this.inputWindow  = new FastEncoderWindow();
     this.inputBuffer  = new DeflateInput();
     this.output       = new Output();
     this.currentMatch = new Match();
 }
 public FastEncoder()
 {
     inputWindow  = new FastEncoderWindow();
     currentMatch = new Match();
 }
 public FastEncoder() {
     inputWindow = new FastEncoderWindow();
     currentMatch = new Match();
 }