| 101 | |
| 102 | template<class T> |
| 103 | Matrix<T>::Matrix(int height, int width) { |
| 104 | this->height = height; |
| 105 | this->width = width; |
| 106 | this->array = std::vector<std::vector<T> >(height, std::vector<T>(width)); |
| 107 | } |
| 108 | |
| 109 | template<class T> |
| 110 | Matrix<T>::Matrix(std::vector<std::vector<T> > const &array) { |
nothing calls this directly
no outgoing calls
no test coverage detected