comparison dwt/dwthelper/InflaterInputStream.d @ 338:ecb375fd8f95

update for tango
author Frank Benoit <benoit@tionex.de>
date Wed, 11 Mar 2009 22:29:03 +0100
parents 1ee938a6e02e
children 210994f12c4c
comparison
equal deleted inserted replaced
337:9041f892283b 338:ecb375fd8f95
28 28
29 uint read (void[] dst){ 29 uint read (void[] dst){
30 int res = istr.read( cast(byte[])dst ); 30 int res = istr.read( cast(byte[])dst );
31 return res; 31 return res;
32 } 32 }
33 void[] load (void[] dst = null) { 33
34 return Conduit.load (this, dst); 34 IOStream flush () {
35 return this;
36 }
37
38 void[] load ( size_t max = -1 ) {
39 return Conduit.load (this, max);
35 } 40 }
36 41
37 tango.io.model.IConduit.InputStream clear (){ 42 tango.io.model.IConduit.InputStream clear (){
38 return this; 43 return this;
39 } 44 }