diff liboctave/dColVector.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 6ae6f1180e62
line wrap: on
line diff
--- a/liboctave/dColVector.h
+++ b/liboctave/dColVector.h
@@ -33,9 +33,6 @@
 
 class ColumnVector : public MArray<double>
 {
-friend class Matrix;
-friend class RowVector;
-
 public:
 
   ColumnVector (void) : MArray<double> () { }
@@ -95,8 +92,8 @@
 
   // i/o
 
-  friend ostream& operator << (ostream& os, const ColumnVector& a);
-  friend istream& operator >> (istream& is, ColumnVector& a);
+  friend std::ostream& operator << (std::ostream& os, const ColumnVector& a);
+  friend std::istream& operator >> (std::istream& is, ColumnVector& a);
 
 private: