| 58 | } |
| 59 | |
| 60 | void CsvUndo::createUndoStateCell(std::string cellContent, table_index_t R, table_index_t C, bool hasCustomHeaderRow, std::string descr) { |
| 61 | this->id = uniqNumber; |
| 62 | this->type = TCRUNCHER_UNDO_TYPE_CELL; |
| 63 | this->prevCellContent = cellContent; |
| 64 | this->R = R; |
| 65 | this->C = C; |
| 66 | this->descr = descr; |
| 67 | this->hasCustomHeaderRow = hasCustomHeaderRow; |
| 68 | } |
| 69 | |
| 70 | |
| 71 | CsvDataStorage &CsvUndo::getUndoStorage() { |