comparison liboctave/boolMatrix.h @ 3685:9d8306640373

[project @ 2000-06-28 19:25:02 by jwe]
author jwe
date Wed, 28 Jun 2000 19:25:04 +0000
parents 5eef8a2294bd
children f9ea3dcf58ee
comparison
equal deleted inserted replaced
3684:f5f010fdbba5 3685:9d8306640373
28 #endif 28 #endif
29 29
30 #include "Array2.h" 30 #include "Array2.h"
31 31
32 #include "mx-defs.h" 32 #include "mx-defs.h"
33 #include "mx-op-defs.h"
33 34
34 class 35 class
35 boolMatrix : public Array2<bool> 36 boolMatrix : public Array2<bool>
36 { 37 {
37 public: 38 public:
76 private: 77 private:
77 78
78 boolMatrix (bool *b, int r, int c) : Array2<bool> (b, r, c) { } 79 boolMatrix (bool *b, int r, int c) : Array2<bool> (b, r, c) { }
79 }; 80 };
80 81
82 MM_CMP_OP_DECLS (boolMatrix, boolMatrix)
83
81 #endif 84 #endif
82 85
83 /* 86 /*
84 ;;; Local Variables: *** 87 ;;; Local Variables: ***
85 ;;; mode: C++ *** 88 ;;; mode: C++ ***