basic delete works

This commit is contained in:
2021-07-09 23:42:43 +02:00
parent ddb9441e23
commit 5e69ce1047
5 changed files with 13 additions and 3 deletions

1
row.h
View File

@@ -99,6 +99,7 @@ class Row {
public:
Row(int cols_count);
Row(const Row &other);
Row& operator=(Row other);
void setColumnValue(int col_index, int value);
void setColumnValue(int col_index, double value);