Mercurial > hg > octave-max
diff src/Cell.h @ 4563:742993a501b9
[project @ 2003-10-29 06:25:12 by jwe]
author | jwe |
---|---|
date | Wed, 29 Oct 2003 06:25:12 +0000 |
parents | 820323598f4f |
children | fc30061d01da |
line wrap: on
line diff
--- a/src/Cell.h +++ b/src/Cell.h @@ -56,6 +56,9 @@ Cell (int n, int m, const octave_value& val = resize_fill_value ()) : ArrayN<octave_value> (dim_vector (n, m), val) { } + Cell (const dim_vector& dims, const octave_value& val = resize_fill_value ()) + : ArrayN<octave_value> (dims, val) { } + Cell (const ArrayN<octave_value>& c) : ArrayN<octave_value> (c) { }