------------------------------------------------------------------------------
| 111 | |
| 112 | //------------------------------------------------------------------------------ |
| 113 | int vtkAMRFlashReader::GetNumberOfBlocks() |
| 114 | { |
| 115 | assert("pre: Internal Flash Reader is nullptr" && (this->Internal != nullptr)); |
| 116 | if (!this->IsReady) |
| 117 | { |
| 118 | return 0; |
| 119 | } |
| 120 | |
| 121 | this->Internal->ReadMetaData(); |
| 122 | return (this->Internal->NumberOfBlocks); |
| 123 | } |
| 124 | |
| 125 | //------------------------------------------------------------------------------ |
| 126 | int vtkAMRFlashReader::GetNumberOfLevels() |
nothing calls this directly
no test coverage detected