------------------------------------------------------------------------------
| 521 | |
| 522 | //------------------------------------------------------------------------------ |
| 523 | int vtkTecplotReader::RequestData(vtkInformation* vtkNotUsed(request), |
| 524 | vtkInformationVector** vtkNotUsed(inputVector), vtkInformationVector* outputVector) |
| 525 | { |
| 526 | vtkInformation* outInf = outputVector->GetInformationObject(0); |
| 527 | vtkMultiBlockDataSet* output = |
| 528 | vtkMultiBlockDataSet::SafeDownCast(outInf->Get(vtkDataObject::DATA_OBJECT())); |
| 529 | |
| 530 | this->Internal->Completed = 0; |
| 531 | this->ReadFile(output); |
| 532 | outInf = nullptr; |
| 533 | output = nullptr; |
| 534 | |
| 535 | return 1; |
| 536 | } |
| 537 | |
| 538 | //------------------------------------------------------------------------------ |
| 539 | const char* vtkTecplotReader::GetDataTitle() |
nothing calls this directly
no test coverage detected