------------------------------------------------------------------------------
| 168 | |
| 169 | //------------------------------------------------------------------------------ |
| 170 | int vtkDataReader::ReadTimeDependentMetaData(int timestep, vtkInformation* metadata) |
| 171 | { |
| 172 | if (this->ReadFromInputString) |
| 173 | { |
| 174 | return this->ReadMetaDataSimple(std::string(), metadata); |
| 175 | } |
| 176 | |
| 177 | return this->Superclass::ReadTimeDependentMetaData(timestep, metadata); |
| 178 | } |
| 179 | |
| 180 | //------------------------------------------------------------------------------ |
| 181 | int vtkDataReader::ReadMesh( |
nothing calls this directly
no test coverage detected