comparison src/ov-bool-mat.h @ 5785:6b9cec830d72

[project @ 2006-05-03 19:32:46 by dbateman]
author dbateman
date Wed, 03 May 2006 19:32:48 +0000
parents ce79d238f142
children c20eb7330d13
comparison
equal deleted inserted replaced
5784:70f7659d0fb9 5785:6b9cec830d72
36 #include "oct-stream.h" 36 #include "oct-stream.h"
37 #include "ov-base.h" 37 #include "ov-base.h"
38 #include "ov-base-mat.h" 38 #include "ov-base-mat.h"
39 #include "ov-typeinfo.h" 39 #include "ov-typeinfo.h"
40 40
41 #include "MatrixType.h"
42
41 class Octave_map; 43 class Octave_map;
42 class octave_value_list; 44 class octave_value_list;
43 45
44 class tree_walker; 46 class tree_walker;
45 47
56 octave_bool_matrix (const boolNDArray& bnda) 58 octave_bool_matrix (const boolNDArray& bnda)
57 : octave_base_matrix<boolNDArray> (bnda) { } 59 : octave_base_matrix<boolNDArray> (bnda) { }
58 60
59 octave_bool_matrix (const boolMatrix& bm) 61 octave_bool_matrix (const boolMatrix& bm)
60 : octave_base_matrix<boolNDArray> (bm) { } 62 : octave_base_matrix<boolNDArray> (bm) { }
63
64 octave_bool_matrix (const boolMatrix& bm, const MatrixType& t)
65 : octave_base_matrix<boolNDArray> (bm, t) { }
61 66
62 octave_bool_matrix (const Array2<bool>& a) 67 octave_bool_matrix (const Array2<bool>& a)
63 : octave_base_matrix<boolNDArray> (a) { } 68 : octave_base_matrix<boolNDArray> (a) { }
64 69
65 octave_bool_matrix (const octave_bool_matrix& bm) 70 octave_bool_matrix (const octave_bool_matrix& bm)