----------------------------------------------------------------------------
| 264 | |
| 265 | //---------------------------------------------------------------------------- |
| 266 | const char* vtkIOSSReader::GetFileName(int index) const |
| 267 | { |
| 268 | auto& internals = (*this->Internals); |
| 269 | if (static_cast<int>(internals.FileNames.size()) > index) |
| 270 | { |
| 271 | auto iter = std::next(internals.FileNames.begin(), index); |
| 272 | return iter->c_str(); |
| 273 | } |
| 274 | return nullptr; |
| 275 | } |
| 276 | |
| 277 | //---------------------------------------------------------------------------- |
| 278 | int vtkIOSSReader::GetNumberOfFileNames() const |