----------------------------------------------------------------------------
| 964 | |
| 965 | //---------------------------------------------------------------------------- |
| 966 | const char* vtkIOSSReader::GetSelector(int index) const |
| 967 | { |
| 968 | auto& internals = (*this->Internals); |
| 969 | if (index >= 0 && index < this->GetNumberOfSelectors()) |
| 970 | { |
| 971 | auto iter = std::next(internals.Selectors.begin(), index); |
| 972 | return iter->c_str(); |
| 973 | } |
| 974 | return nullptr; |
| 975 | } |
| 976 | |
| 977 | //---------------------------------------------------------------------------- |
| 978 | void vtkIOSSReader::PrintSelf(ostream& os, vtkIndent indent) |
no test coverage detected