| 102 | |
| 103 | |
| 104 | std::string CsvTable::getCell(table_index_t row, table_index_t col) { |
| 105 | if( row >= 0 and row < storage.rows() and col >= 0 and col <= storage.columns() ) { |
| 106 | return storage.get(row,col); |
| 107 | } else { |
| 108 | return ""; |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | |
| 113 | void CsvTable::setCell(std::string content, table_index_t row, table_index_t col) { |
no test coverage detected