------------------------------------------------------------------------------
| 754 | |
| 755 | //------------------------------------------------------------------------------ |
| 756 | vtkIdType vtkVariantArray::InsertNextValue(ValueType value) |
| 757 | { |
| 758 | this->InsertValue(++this->MaxId, value); |
| 759 | this->DataElementChanged(this->MaxId); |
| 760 | return this->MaxId; |
| 761 | } |
| 762 | |
| 763 | //------------------------------------------------------------------------------ |
| 764 | vtkVariantArray::ValueType* vtkVariantArray::GetPointer(vtkIdType id) |
no test coverage detected