diff dwt/dwthelper/ByteArrayOutputStream.d @ 248:d10ff1f47f84

Add: version TANGOSVN
author Frank Benoit <benoit@tionex.de>
date Sun, 06 Jul 2008 16:42:54 +0200
parents 32a6819fef61
children a63e2cd5485e
line wrap: on
line diff
--- a/dwt/dwthelper/ByteArrayOutputStream.d	Tue Jun 24 22:05:28 2008 +0200
+++ b/dwt/dwthelper/ByteArrayOutputStream.d	Sun Jul 06 16:42:54 2008 +0200
@@ -5,7 +5,13 @@
 
 public import dwt.dwthelper.OutputStream;
 import dwt.dwthelper.utils;
-import tango.io.GrowBuffer;
+import tango.io.Buffer;
+version(TANGOSVN) {
+    import tango.io.Buffer;
+}
+else{
+    import tango.io.GrowBuffer;
+}
 
 public class ByteArrayOutputStream : dwt.dwthelper.OutputStream.OutputStream {