diff liboctave/dbleSCHUR.h @ 3504:5eef8a2294bd

[project @ 2000-02-01 10:06:51 by jwe]
author jwe
date Tue, 01 Feb 2000 10:07:26 +0000
parents d14c483b3c12
children 6e86256e9c54
line wrap: on
line diff
--- a/liboctave/dbleSCHUR.h
+++ b/liboctave/dbleSCHUR.h
@@ -40,13 +40,13 @@
   SCHUR (void)
     : schur_mat (), unitary_mat () { }
 
-  SCHUR (const Matrix& a, const string& ord)
+  SCHUR (const Matrix& a, const std::string& ord)
     : schur_mat (), unitary_mat ()
       {
         init (a, ord);
       }
 
-  SCHUR (const Matrix& a, const string& ord, int& info)
+  SCHUR (const Matrix& a, const std::string& ord, int& info)
     : schur_mat (), unitary_mat ()
       {
         info = init (a, ord);
@@ -71,7 +71,7 @@
 
   Matrix unitary_matrix (void) const { return unitary_mat; }
 
-  friend ostream& operator << (ostream& os, const SCHUR& a);
+  friend std::ostream& operator << (std::ostream& os, const SCHUR& a);
 
   typedef int (*select_function) (const double&, const double&);
 
@@ -82,7 +82,7 @@
 
   select_function selector;
 
-  int init (const Matrix& a, const string& ord);
+  int init (const Matrix& a, const std::string& ord);
 };
 
 #endif