view dwt/dwthelper/OutputStream.d @ 318:f7a1b148cb35

Fix the languag file support.
author Frank Benoit <benoit@tionex.de>
date Sun, 19 Oct 2008 02:47:56 +0200
parents 32a6819fef61
children
line wrap: on
line source

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

import dwt.dwthelper.utils;

public abstract class OutputStream {

    public this(){
    }

    public abstract void write( int b );

    public void write( byte[] b ){
        foreach( bv; b ){
            write(bv);
        }
    }

    public void write( byte[] b, int off, int len ){
        write(b[off .. off+len]);
    }

    public void flush(){
    }

    public void close(){
    }
}