diff src/Cell.cc @ 8579:7e0f36dfefbe

implement octave_value_list using Array
author Jaroslav Hajek <highegg@gmail.com>
date Fri, 23 Jan 2009 09:57:19 +0100
parents 7cbe01c21986
children 280fae940bb0
line wrap: on
line diff
--- a/src/Cell.cc	Thu Jan 22 21:41:05 2009 -0500
+++ b/src/Cell.cc	Fri Jan 23 09:57:19 2009 +0100
@@ -29,6 +29,12 @@
 #include "Cell.h"
 #include "error.h"
 #include "gripes.h"
+#include "oct-obj.h"
+
+Cell::Cell (const octave_value_list& ovl)
+  : ArrayN<octave_value> (ovl.cell_value ())
+{
+}
 
 Cell::Cell (const string_vector& sv, bool trim)
   : ArrayN<octave_value> ()