| 7 | } |
| 8 | |
| 9 | void Board::add_column(string title) { |
| 10 | Column column(trim_spaces(title)); |
| 11 | this->columns.push_back(column); |
| 12 | } |
| 13 | |
| 14 | void Board::rename_column(size_t column_index, string new_title) { |
| 15 | this->columns[column_index].title = trim_spaces(new_title); |
no test coverage detected