view dwtx/dwtxhelper/PushbackReader.d @ 195:a4d38d47ddc4

HashMap support for null values and keys
author Frank Benoit <benoit@tionex.de>
date Tue, 03 Feb 2009 16:08:10 +0100
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__);
    }

}