diff src/ov.h @ 4532:01ee68d18069

[project @ 2003-10-10 00:49:54 by jwe]
author jwe
date Fri, 10 Oct 2003 00:49:55 +0000
parents 508238e65af7
children 69a9b22a72a2
line wrap: on
line diff
--- a/src/ov.h
+++ b/src/ov.h
@@ -182,7 +182,8 @@
 
   octave_value (octave_time t);
   octave_value (double d);
-  octave_value (const Cell& m, bool is_cs_list = false);
+  octave_value (const ArrayN<octave_value>& a, bool is_cs_list = false);
+  octave_value (const Cell& c, bool is_cs_list = false);
   octave_value (const Matrix& m);
   octave_value (const NDArray& nda);
   octave_value (const DiagMatrix& d);
@@ -269,6 +270,9 @@
 
   void maybe_mutate (void);
 
+  virtual octave_value squeeze (void) const
+    { return rep->squeeze (); }
+
   virtual octave_value *try_narrowing_conversion (void)
     { return rep->try_narrowing_conversion (); }