#ifndef MATRIX_H #define MATRIX_H class matrix{ public: matrix(int r, int c); matrix(const matrix & rhs); void operator =(const matrix & rhs); int* operator [](int i); ~matrix(); private: int ** myMatrix; int numRows; int numCols; }; #endif