diff liboctave/idx-vector.h @ 4650:623f6262a8e9

[project @ 2003-11-23 23:17:46 by jwe]
author jwe
date Sun, 23 Nov 2003 23:17:47 +0000
parents f6a61399bc5c
children 14ab7b05a572
line wrap: on
line diff
--- a/liboctave/idx-vector.h	Sun Nov 23 21:46:44 2003 +0000
+++ b/liboctave/idx-vector.h	Sun Nov 23 23:17:47 2003 +0000
@@ -32,8 +32,8 @@
 #include "Array.h"
 
 class ColumnVector;
-class boolMatrix;
-class Matrix;
+class boolNDArray;
+class NDArray;
 class Range;
 
 class
@@ -64,7 +64,7 @@
 
     idx_vector_rep (const ColumnVector& v);
 
-    idx_vector_rep (const Matrix& m);
+    idx_vector_rep (const NDArray& nda);
 
     idx_vector_rep (const Range& r);
 
@@ -76,7 +76,7 @@
 
     idx_vector_rep (bool b);
 
-    idx_vector_rep (const boolMatrix& bm);
+    idx_vector_rep (const boolNDArray& bnda);
 
     idx_vector_rep (const idx_vector_rep& a);
 
@@ -166,9 +166,9 @@
       rep->count = 1;
     }
 
-  idx_vector (const Matrix& m)
+  idx_vector (const NDArray& nda)
     {
-      rep = new idx_vector_rep (m);
+      rep = new idx_vector_rep (nda);
       rep->count = 1;
     }
 
@@ -202,9 +202,9 @@
       rep->count = 1;
     }
 
-  idx_vector (const boolMatrix& bm)
+  idx_vector (const boolNDArray& bnda)
     {
-      rep = new idx_vector_rep (bm);
+      rep = new idx_vector_rep (bnda);
       rep->count = 1;
     }