diff dwt/dwthelper/InflaterInputStream.d @ 356:8ebacc5c07dc

Fixes for TANGOSVN r4235 -- still some warnings but builds
author John Reimer <terminal.node@gmail.com>
date Sun, 04 Jan 2009 02:47:54 -0500
parents a2166f25ce17
children ee1dd551f5b1 5b585873fec2
line wrap: on
line diff
--- a/dwt/dwthelper/InflaterInputStream.d	Sun Dec 14 02:31:38 2008 -0500
+++ b/dwt/dwthelper/InflaterInputStream.d	Sun Jan 04 02:47:54 2009 -0500
@@ -38,6 +38,11 @@
         return this;
     }
 
+    long seek ( long offset, IOStream.Anchor anchor = IOStream.Anchor.Begin )
+    {
+        throw new IOException(__FILE__ ~ "seek method not implemented");
+    }
+    
     tango.io.model.IConduit.IConduit conduit (){
         return null;
     }
@@ -45,6 +50,10 @@
     void close (){
         istr.close();
     }
+    
+    tango.io.model.IConduit.InputStream input() {
+        return this; //??
+    }
 }
 
 public class InflaterInputStream : dwt.dwthelper.InputStream.InputStream {