------------------------------------------------------------------------------
| 12184 | |
| 12185 | //------------------------------------------------------------------------------ |
| 12186 | void vtkOpenFOAMReader::InitializeRequestInformation() |
| 12187 | { |
| 12188 | this->RequestInformationTimeInMicroseconds = 0; |
| 12189 | this->RequestInformationBytes = 0; |
| 12190 | for (auto& readerObj : this->Readers) |
| 12191 | { |
| 12192 | if (auto reader = vtkOpenFOAMReaderPrivate::SafeDownCast(readerObj)) |
| 12193 | { |
| 12194 | reader->RequestInformationTimeInMicroseconds = 0; |
| 12195 | reader->RequestInformationBytes = 0; |
| 12196 | } |
| 12197 | } |
| 12198 | } |
| 12199 | |
| 12200 | //------------------------------------------------------------------------------ |
| 12201 | void vtkOpenFOAMReader::InitializeRequestData() |