------------------------------------------------------------------------------
| 104 | |
| 105 | //------------------------------------------------------------------------------ |
| 106 | vtkArrayIterator* vtkStringArray::NewIterator() |
| 107 | { |
| 108 | vtkArrayIteratorTemplate<ValueType>* iter = vtkArrayIteratorTemplate<ValueType>::New(); |
| 109 | iter->Initialize(this); |
| 110 | return iter; |
| 111 | } |
| 112 | |
| 113 | //------------------------------------------------------------------------------ |
| 114 | // This method lets the user specify data to be held by the array. The |
nothing calls this directly
no test coverage detected