view dwtx/dwtxhelper/PushbackReader.d @ 175:9e7e1a8bc813

get a JThread for a thread that was just a Thread.
author Frank Benoit <benoit@tionex.de>
date Fri, 12 Sep 2008 09:44:36 +0200
parents d994a8b2cdf7
children
line wrap: on
line source

module dwtx.dwtxhelper.PushbackReader;

import dwt.dwthelper.utils;

class PushbackReader : Reader {

    this( Reader reader ){
        implMissing(__FILE__,__LINE__);
    }
    void unread( char c ){
        implMissing(__FILE__,__LINE__);
    }
    int read(char[] cbuf, int off, int len){
        implMissing(__FILE__,__LINE__);
        return 0;
    }
    void  close(){
        implMissing(__FILE__,__LINE__);
    }

}