| 111 | |
| 112 | |
| 113 | void CsvTable::setCell(std::string content, table_index_t row, table_index_t col) { |
| 114 | if( row >= 0 and row < getNumberRows() and col >= 0 and col <= getNumberCols() ) { |
| 115 | storage.set(content, row, col); |
| 116 | } else { |
| 117 | // TODO Handle error |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | |
| 122 |
no test coverage detected