MCPcopy Create free account
hub / github.com/Kitware/VTK / vtkTecplotReader

Method vtkTecplotReader

IO/Geometry/vtkTecplotReader.cxx:428–442  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

426
427//------------------------------------------------------------------------------
428vtkTecplotReader::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//------------------------------------------------------------------------------
445vtkTecplotReader::~vtkTecplotReader()

Callers

nothing calls this directly

Calls 5

InitMethod · 0.95
SetClientDataMethod · 0.80
NewFunction · 0.50
AddObserverMethod · 0.45
SetNumberOfInputPortsMethod · 0.45

Tested by

no test coverage detected