push_back(std::vector > row) Adds row to the end of the table data */
| 266 | Adds row to the end of the table data |
| 267 | */ |
| 268 | void CsvDataStorage::push_back(std::string rowString) { |
| 269 | tableData.push_back(rowString); |
| 270 | } |
| 271 | |
| 272 | void CsvDataStorage::push_back(std::vector<std::string> row) { |
| 273 | tableData.push_back(mergeString(row)); |
no outgoing calls