comparison dwtx/dwtxhelper/PushbackReader.d @ 172:d994a8b2cdf7

again compile fixes
author Frank Benoit <benoit@tionex.de>
date Wed, 10 Sep 2008 23:14:02 +0200
parents 1a5b8f8129df
children
comparison
equal deleted inserted replaced
171:ee33f30b14e2 172:d994a8b2cdf7
1 module dwtx.dwtxhelper.PushbackReader; 1 module dwtx.dwtxhelper.PushbackReader;
2 2
3 import dwt.dwthelper.utils; 3 import dwt.dwthelper.utils;
4 4
5 class PushbackReader : Reader { 5 class PushbackReader : Reader {
6
6 this( Reader reader ){ 7 this( Reader reader ){
8 implMissing(__FILE__,__LINE__);
7 } 9 }
8 void unread( char c ){ 10 void unread( char c ){
11 implMissing(__FILE__,__LINE__);
9 } 12 }
13 int read(char[] cbuf, int off, int len){
14 implMissing(__FILE__,__LINE__);
15 return 0;
16 }
17 void close(){
18 implMissing(__FILE__,__LINE__);
19 }
20
10 } 21 }
11 22