diff src/ov.h @ 4507:65f47f8a92a2

[project @ 2003-09-10 15:48:02 by jwe]
author jwe
date Wed, 10 Sep 2003 15:48:08 +0000
parents e944fbe3fff2
children 508238e65af7
line wrap: on
line diff
--- a/src/ov.h
+++ b/src/ov.h
@@ -33,7 +33,7 @@
 #include <string>
 #include <list>
 
-#include "ArrayN.h"
+
 #include "Range.h"
 #include "idx-vector.h"
 #include "mx-base.h"
@@ -184,7 +184,7 @@
   octave_value (double d);
   octave_value (const Cell& m);
   octave_value (const Matrix& m);
-  octave_value (const ArrayN<double>& m);
+  octave_value (const NDArray& m);
   octave_value (const DiagMatrix& d);
   octave_value (const RowVector& v);
   octave_value (const ColumnVector& v);
@@ -475,7 +475,7 @@
   virtual Matrix matrix_value (bool frc_str_conv = false) const
     { return rep->matrix_value (frc_str_conv); }
 
-  virtual ArrayN<double> double_nd_array_value (bool frc_str_conv = false) const
+  virtual NDArray double_nd_array_value (bool frc_str_conv = false) const
     { return rep->double_nd_array_value (frc_str_conv); }
 
   virtual Complex complex_value (bool frc_str_conv = false) const