------------------------------------------------------------------------------
| 289 | |
| 290 | //------------------------------------------------------------------------------ |
| 291 | void vtkTable::InsertRow(vtkIdType row) |
| 292 | { |
| 293 | this->InsertRows(row, 1); |
| 294 | } |
| 295 | |
| 296 | //------------------------------------------------------------------------------ |
| 297 | void vtkTable::InsertRows(vtkIdType row, vtkIdType n) |
nothing calls this directly
no test coverage detected