diff liboctave/data-conv.h @ 3504:5eef8a2294bd

[project @ 2000-02-01 10:06:51 by jwe]
author jwe
date Tue, 01 Feb 2000 10:07:26 +0000
parents 8b262e771614
children 8aea513ff224
line wrap: on
line diff
--- a/liboctave/data-conv.h
+++ b/liboctave/data-conv.h
@@ -72,7 +72,7 @@
       dt_double_complex
     };
 
-  static data_type string_to_data_type (const string& s);
+  static data_type string_to_data_type (const std::string& s);
 };
 
 enum save_type
@@ -96,10 +96,10 @@
 			    oct_mach_info::float_format fmt);
 
 extern void
-read_doubles (istream& is, double *data, save_type type, int len,
+read_doubles (std::istream& is, double *data, save_type type, int len,
 	      int swap, oct_mach_info::float_format fmt);
 extern void
-write_doubles (ostream& os, const double *data, save_type type, int len);
+write_doubles (std::ostream& os, const double *data, save_type type, int len);
 
 #endif