view dwt/dwthelper/OutputStream.d @ 235:ec7da638647f

Fix string compare in dwthelper/utils.d
author Frank Benoit <benoit@tionex.de>
date Sun, 08 Jun 2008 15:12:08 +0200
parents ab60f3309436
children 32a6819fef61
line wrap: on
line source

/**
 * Authors: Frank Benoit <keinfarbton@googlemail.com>
 */
module dwt.dwthelper.OutputStream;

import dwt.dwthelper.utils;
static import tango.io.model.IConduit;

public abstract class OutputStream {

    private tango.io.model.IConduit.OutputStream ostr;

    public this(){
    }

    protected this( tango.io.model.IConduit.OutputStream aOutStream) {
        this.ostr = aOutStream;
    }

    protected this(OutputStream rhs) {
        ostr = rhs.ostr;
    }

    public abstract void write( int b );

    public void write( byte[] b ){
        ostr.write(b);
    }

    public void write(String c) {
        ostr.write(c);
    }

    public void write( byte[] b, int off, int len ){
        implMissing( __FILE__, __LINE__ );
    }

    public void flush(){
        ostr.flush();
    }

    public void close(){
        ostr.flush();
        implMissing( __FILE__, __LINE__ );
    }


}