diff liboctave/chMatrix.h @ 3504:5eef8a2294bd

[project @ 2000-02-01 10:06:51 by jwe]
author jwe
date Tue, 01 Feb 2000 10:07:26 +0000
parents 7aae2c3636a7
children b8c1cb5b9fd9
line wrap: on
line diff
--- a/liboctave/chMatrix.h
+++ b/liboctave/chMatrix.h
@@ -48,7 +48,7 @@
   charMatrix (const charMatrix& a) : MArray2<char> (a) { }
   charMatrix (char c);
   charMatrix (const char *s);
-  charMatrix (const string& s);
+  charMatrix (const std::string& s);
   charMatrix (const string_vector& s);
 
   charMatrix& operator = (const charMatrix& a)
@@ -65,7 +65,7 @@
   charMatrix& insert (const char *s, int r, int c);
   charMatrix& insert (const charMatrix& a, int r, int c);
 
-  string row_as_string (int r, bool strip_trailing_whitespace = false) const;
+  std::string row_as_string (int, bool = false) const;
 
   // resize is the destructive equivalent for this one
 
@@ -77,8 +77,8 @@
 #if 0
   // i/o
 
-  friend ostream& operator << (ostream& os, const Matrix& a);
-  friend istream& operator >> (istream& is, Matrix& a);
+  friend std::ostream& operator << (std::ostream& os, const Matrix& a);
+  friend std::istream& operator >> (std::istream& is, Matrix& a);
 #endif
 
 private: