Mercurial > hg > octave-nkf
diff src/DLD-FUNCTIONS/dassl.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/dassl.cc +++ b/src/DLD-FUNCTIONS/dassl.cc @@ -26,7 +26,7 @@ #include <string> -#include <iostream.h> +#include <iostream> #include "DASSL.h" @@ -300,7 +300,7 @@ }; static void -print_dassl_option_list (ostream& os) +print_dassl_option_list (std::ostream& os) { print_usage ("dassl_options", 1); @@ -330,7 +330,7 @@ } static void -set_dassl_option (const string& keyword, double val) +set_dassl_option (const std::string& keyword, double val) { DASSL_OPTIONS *list = dassl_option_table; @@ -350,7 +350,7 @@ } static octave_value_list -show_dassl_option (const string& keyword) +show_dassl_option (const std::string& keyword) { octave_value retval; @@ -398,7 +398,7 @@ } else if (nargin == 1 || nargin == 2) { - string keyword = args(0).string_value (); + std::string keyword = args(0).string_value (); if (! error_state) {