changeset 3614:b1b831947caa

[project @ 2000-03-17 11:10:34 by jwe]
author jwe
date Fri, 17 Mar 2000 11:10:34 +0000
parents 0a93682f89c8
children c3b1f34a4748
files src/c_file_ptr_stream.h
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/c_file_ptr_stream.h
+++ b/src/c_file_ptr_stream.h
@@ -27,11 +27,11 @@
 #pragma interface
 #endif
 
-#include <iostream.h>
+#include <iostream>
 #include <stdio.h>
 
 class
-c_file_ptr_buf : public streambuf
+c_file_ptr_buf : public std::streambuf
 {
 protected:
 
@@ -41,7 +41,7 @@
 
   FILE* stdiofile (void) const { return f; }
 
-  c_file_ptr_buf (FILE *f_arg) : streambuf (), f (f_arg) { }
+  c_file_ptr_buf (FILE *f_arg) : std::streambuf (), f (f_arg) { }
 
   ~c_file_ptr_buf (void);