------------------------------------------------------------------------------
| 515 | |
| 516 | //------------------------------------------------------------------------------ |
| 517 | vtkIdType vtkStringArray::InsertNextValue(ValueType f) |
| 518 | { |
| 519 | this->InsertValue(++this->MaxId, f); |
| 520 | this->DataElementChanged(this->MaxId); |
| 521 | return this->MaxId; |
| 522 | } |
| 523 | |
| 524 | //------------------------------------------------------------------------------ |
| 525 | int vtkStringArray::GetDataTypeSize() const |
no test coverage detected