#ifndef _BOOLMATRIX_H #define _BOOLMATRIX_H #include #include class BoolMatrix { private: bool** Matrix; int MatrixSize; public: BoolMatrix(const int MatrixSize); ~BoolMatrix(); void RandomFill(); BoolMatrix operator*(const BoolMatrix); friend std::ostream& operator<<(std::ostream& os, const BoolMatrix& MatrixToWrite); }; #endif