| 2523 | } |
| 2524 | |
| 2525 | void |
| 2526 | KnobTable::appendRow(const std::vector<std::string>& row) |
| 2527 | { |
| 2528 | std::list<std::vector<std::string> > table; |
| 2529 | |
| 2530 | getTable(&table); |
| 2531 | table.push_back(row); |
| 2532 | setTable(table); |
| 2533 | } |
| 2534 | |
| 2535 | void |
| 2536 | KnobTable::insertRowSingleCol(int index, |
no test coverage detected