comparison liboctave/boolMatrix.h @ 3933:f9ea3dcf58ee

[project @ 2002-05-15 03:21:00 by jwe]
author jwe
date Wed, 15 May 2002 03:21:01 +0000
parents 9d8306640373
children 6476dd85a65f
comparison
equal deleted inserted replaced
3932:2e2e32198722 3933:f9ea3dcf58ee
72 72
73 friend std::ostream& operator << (std::ostream& os, const Matrix& a); 73 friend std::ostream& operator << (std::ostream& os, const Matrix& a);
74 friend std::istream& operator >> (std::istream& is, Matrix& a); 74 friend std::istream& operator >> (std::istream& is, Matrix& a);
75 #endif 75 #endif
76 76
77 static bool resize_fill_value (void) { return false; }
78
77 private: 79 private:
78 80
79 boolMatrix (bool *b, int r, int c) : Array2<bool> (b, r, c) { } 81 boolMatrix (bool *b, int r, int c) : Array2<bool> (b, r, c) { }
80 }; 82 };
81 83