diff src/DLD-FUNCTIONS/lsode.cc @ 3523:b80bbb43a1a9

[project @ 2000-02-02 10:25:52 by jwe]
author jwe
date Wed, 02 Feb 2000 10:26:25 +0000
parents e71b3d1dd327
children 71bd2d124119
line wrap: on
line diff
--- a/src/DLD-FUNCTIONS/lsode.cc	Wed Feb 02 06:32:04 2000 +0000
+++ b/src/DLD-FUNCTIONS/lsode.cc	Wed Feb 02 10:26:25 2000 +0000
@@ -26,7 +26,7 @@
 
 #include <string>
 
-#include <iostream.h>
+#include <iostream>
 
 #include "LSODE.h"
 #include "lo-mappers.h"
@@ -360,7 +360,7 @@
 };
 
 static void
-print_lsode_option_list (ostream& os)
+print_lsode_option_list (std::ostream& os)
 {
   print_usage ("lsode_options", 1);
 
@@ -399,7 +399,7 @@
 }
 
 static void
-set_lsode_option (const string& keyword, double val)
+set_lsode_option (const std::string& keyword, double val)
 {
   LSODE_OPTIONS *list = lsode_option_table;
 
@@ -429,7 +429,7 @@
 }
 
 static octave_value_list
-show_lsode_option (const string& keyword)
+show_lsode_option (const std::string& keyword)
 {
   octave_value retval;
 
@@ -488,7 +488,7 @@
     }
   else if (nargin == 1 || nargin == 2)
     {
-      string keyword = args(0).string_value ();
+      std::string keyword = args(0).string_value ();
 
       if (! error_state)
 	{