Mercurial > hg > octave-nkf
diff liboctave/dRowVector.h @ 3585:d9803711e047
[project @ 2000-02-08 04:35:39 by jwe]
author | jwe |
---|---|
date | Tue, 08 Feb 2000 04:35:47 +0000 |
parents | 2923f52d8fda |
children | 6e86256e9c54 |
line wrap: on
line diff
--- a/liboctave/dRowVector.h +++ b/liboctave/dRowVector.h @@ -31,15 +31,20 @@ #include "mx-defs.h" -class RowVector : public MArray<double> +class +RowVector : public MArray<double> { public: RowVector (void) : MArray<double> () { } - RowVector (int n) : MArray<double> (n) { } + + explicit RowVector (int n) : MArray<double> (n) { } + RowVector (int n, double val) : MArray<double> (n, val) { } + + RowVector (const RowVector& a) : MArray<double> (a) { } + RowVector (const MArray<double>& a) : MArray<double> (a) { } - RowVector (const RowVector& a) : MArray<double> (a) { } RowVector& operator = (const RowVector& a) {