------------------------------------------------------------------------------
| 3678 | } |
| 3679 | //------------------------------------------------------------------------------ |
| 3680 | const char* vtkDataReader::GetFieldDataNameInFile(int i) |
| 3681 | { |
| 3682 | this->CharacterizeFile(); |
| 3683 | if (!this->FieldDataNameInFile || i < 0 || i >= this->NumberOfFieldDataInFile) |
| 3684 | { |
| 3685 | return nullptr; |
| 3686 | } |
| 3687 | else |
| 3688 | { |
| 3689 | return this->FieldDataNameInFile[i]; |
| 3690 | } |
| 3691 | } |
| 3692 | |
| 3693 | //------------------------------------------------------------------------------ |
| 3694 | void vtkDataReader::PrintSelf(ostream& os, vtkIndent indent) |
nothing calls this directly
no test coverage detected