view dwt/dwthelper/OutputStream.d @ 12:0c78fa47d476

helper classes
author Frank Benoit <benoit@tionex.de>
date Sun, 06 Jan 2008 19:36:29 +0100
parents
children 380bad9f6852
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(char[] 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__ );
    }


}