diff 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
line wrap: on
line diff
--- a/dwtx/dwtxhelper/PushbackReader.d	Wed Sep 10 22:45:07 2008 +0200
+++ b/dwtx/dwtxhelper/PushbackReader.d	Wed Sep 10 23:14:02 2008 +0200
@@ -3,9 +3,20 @@
 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__);
+    }
+
 }