view base/src/java/io/OutputStream.d @ 119:d00e8db0a568

Spell error.
author Jacob Carlborg <doob@me.com>
date Sun, 17 Apr 2011 17:58:36 +0200
parents 1bf55a6eb092
children 536e43f63c81
line wrap: on
line source

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

import java.lang.all;

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(){
    }
}