------------------------------------------------------------------------------
| 161 | |
| 162 | //------------------------------------------------------------------------------ |
| 163 | void vtkFieldData::BasicIterator::PrintSelf(ostream& os, vtkIndent indent) |
| 164 | { |
| 165 | os << indent << "BasicIterator:{"; |
| 166 | size_t listSize = this->List.size(); |
| 167 | if (listSize > 0) |
| 168 | { |
| 169 | os << this->List[0]; |
| 170 | for (size_t i = 1; i < listSize; ++i) |
| 171 | { |
| 172 | os << ", " << this->List[i]; |
| 173 | } |
| 174 | } |
| 175 | os << "}" << endl; |
| 176 | } |
| 177 | |
| 178 | //------------------------------------------------------------------------------ |
| 179 | vtkFieldData::BasicIterator& vtkFieldData::BasicIterator::operator=( |
nothing calls this directly
no test coverage detected