------------------------------------------------------------------------------
| 12156 | |
| 12157 | //------------------------------------------------------------------------------ |
| 12158 | size_t vtkOpenFOAMReader::GetRequestInformationBytes() const |
| 12159 | { |
| 12160 | size_t totalBytes = 0; |
| 12161 | for (auto& readerObj : this->Readers) |
| 12162 | { |
| 12163 | if (auto reader = vtkOpenFOAMReaderPrivate::SafeDownCast(readerObj)) |
| 12164 | { |
| 12165 | totalBytes += reader->RequestInformationBytes; |
| 12166 | } |
| 12167 | } |
| 12168 | return totalBytes; |
| 12169 | } |
| 12170 | |
| 12171 | //------------------------------------------------------------------------------ |
| 12172 | size_t vtkOpenFOAMReader::GetRequestDataBytes() const |
no outgoing calls
no test coverage detected