------------------------------------------------------------------------------
| 426 | |
| 427 | //------------------------------------------------------------------------------ |
| 428 | vtkTecplotReader::vtkTecplotReader() |
| 429 | { |
| 430 | this->SelectionObserver = vtkCallbackCommand::New(); |
| 431 | this->SelectionObserver->SetClientData(this); |
| 432 | this->SelectionObserver->SetCallback(&vtkTecplotReader::SelectionModifiedCallback); |
| 433 | |
| 434 | this->DataArraySelection = vtkDataArraySelection::New(); |
| 435 | this->DataArraySelection->AddObserver(vtkCommand::ModifiedEvent, this->SelectionObserver); |
| 436 | |
| 437 | this->FileName = nullptr; |
| 438 | this->Internal = new vtkTecplotReaderInternal; |
| 439 | this->SetNumberOfInputPorts(0); |
| 440 | |
| 441 | this->Init(); |
| 442 | } |
| 443 | |
| 444 | //------------------------------------------------------------------------------ |
| 445 | vtkTecplotReader::~vtkTecplotReader() |
nothing calls this directly
no test coverage detected