diff 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
line wrap: on
line diff
--- a/src/ov-bool-mat.h	Wed May 03 05:57:16 2006 +0000
+++ b/src/ov-bool-mat.h	Wed May 03 19:32:48 2006 +0000
@@ -38,6 +38,8 @@
 #include "ov-base-mat.h"
 #include "ov-typeinfo.h"
 
+#include "MatrixType.h"
+
 class Octave_map;
 class octave_value_list;
 
@@ -59,6 +61,9 @@
   octave_bool_matrix (const boolMatrix& bm)
     : octave_base_matrix<boolNDArray> (bm) { }
 
+  octave_bool_matrix (const boolMatrix& bm, const MatrixType& t)
+    : octave_base_matrix<boolNDArray> (bm, t) { }
+
   octave_bool_matrix (const Array2<bool>& a)
     : octave_base_matrix<boolNDArray> (a) { }