comparison dwt/dwthelper/ByteArrayOutputStream.d @ 262:e10de397beb1

ADD version TANGOSVN
author Frank Benoit <benoit@tionex.de>
date Sun, 06 Jul 2008 15:33:12 +0200
parents cc1d3de0e80b
children d472fae79005
comparison
equal deleted inserted replaced
261:edcf78db8722 262:e10de397beb1
3 */ 3 */
4 module dwt.dwthelper.ByteArrayOutputStream; 4 module dwt.dwthelper.ByteArrayOutputStream;
5 5
6 public import dwt.dwthelper.OutputStream; 6 public import dwt.dwthelper.OutputStream;
7 import dwt.dwthelper.utils; 7 import dwt.dwthelper.utils;
8 import tango.io.GrowBuffer; 8 import tango.io.Buffer;
9 version(TANGOSVN)
10 import tango.io.Buffer;
11 }
12 else{
13 import tango.io.GrowBuffer;
14 }
9 15
10 public class ByteArrayOutputStream : dwt.dwthelper.OutputStream.OutputStream { 16 public class ByteArrayOutputStream : dwt.dwthelper.OutputStream.OutputStream {
11 17
12 protected GrowBuffer buffer; 18 protected GrowBuffer buffer;
13 19