changeset 316:a2166f25ce17

update TANGOSVN
author Frank Benoit <benoit@tionex.de>
date Tue, 16 Sep 2008 15:28:32 +0200
parents 21959e16bc1e
children 6f57d3b9947c
files dwt/dwthelper/FileInputStream.d dwt/dwthelper/FileOutputStream.d dwt/dwthelper/InflaterInputStream.d
diffstat 3 files changed, 13 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/dwt/dwthelper/FileInputStream.d	Tue Sep 16 15:28:21 2008 +0200
+++ b/dwt/dwthelper/FileInputStream.d	Tue Sep 16 15:28:32 2008 +0200
@@ -7,7 +7,11 @@
 import dwt.dwthelper.File;
 import dwt.dwthelper.InputStream;
 
+version(TANGOSVN){
+import tango.io.device.FileConduit;
+} else {
 import tango.io.FileConduit;
+}
 import tango.io.protocol.Reader;
 import tango.core.Exception;
 import tango.text.convert.Format;
--- a/dwt/dwthelper/FileOutputStream.d	Tue Sep 16 15:28:21 2008 +0200
+++ b/dwt/dwthelper/FileOutputStream.d	Tue Sep 16 15:28:32 2008 +0200
@@ -8,7 +8,11 @@
 
 import dwt.dwthelper.utils;
 
+version(TANGOSVN){
+import tango.io.device.FileConduit;
+} else {
 import tango.io.FileConduit;
+}
 
 public class FileOutputStream : dwt.dwthelper.OutputStream.OutputStream {
 
--- a/dwt/dwthelper/InflaterInputStream.d	Tue Sep 16 15:28:21 2008 +0200
+++ b/dwt/dwthelper/InflaterInputStream.d	Tue Sep 16 15:28:32 2008 +0200
@@ -12,7 +12,11 @@
         pragma(link,"zlib");
     }
 }
-import tango.io.Conduit;
+version(TANGOSVN){
+    import tango.io.device.Conduit;
+} else {
+    import tango.io.Conduit;
+}
 
 class InputStreamWrapper : tango.io.model.IConduit.InputStream {