merge (inapropriately) detached2 to main

This commit is contained in:
emil
2024-10-07 12:53:55 +03:00
parent 253cf335ce
commit 6e9ce3c894
8 changed files with 196 additions and 25 deletions
+4
View File
@@ -9,6 +9,8 @@
* Vector is a class to represent
* a column vector with n rows.
*/
class Vector {
protected:
// Number of rows in vector
@@ -95,4 +97,6 @@ public:
friend std::ostream& operator<<(std::ostream& cout, Matrix& matrixObj);
};
void showMatrix(Matrix);
#endif // TOOLS_MATRIX_H