| 643 | //------------------------------------------------------------------------------ |
| 644 | template <typename iterT> |
| 645 | vtkVariant vtkTableGetVariantValue(iterT* it, vtkIdType row) |
| 646 | { |
| 647 | return vtkVariant(it->GetValue(row)); |
| 648 | } |
| 649 | |
| 650 | //------------------------------------------------------------------------------ |
| 651 | vtkVariant vtkTable::GetValue(vtkIdType row, vtkIdType col) |
nothing calls this directly
no test coverage detected