------------------------------------------------------------------------------
| 24 | |
| 25 | //------------------------------------------------------------------------------ |
| 26 | vtkPDataSetWriter::vtkPDataSetWriter() |
| 27 | { |
| 28 | this->StartPiece = 0; |
| 29 | this->EndPiece = 0; |
| 30 | this->NumberOfPieces = 1; |
| 31 | this->GhostLevel = 0; |
| 32 | |
| 33 | this->FilePattern = nullptr; |
| 34 | this->SetFilePattern("{:s}.{:d}.vtk"); |
| 35 | this->UseRelativeFileNames = 1; |
| 36 | |
| 37 | this->Controller = nullptr; |
| 38 | this->SetController(vtkMultiProcessController::GetGlobalController()); |
| 39 | } |
| 40 | |
| 41 | //------------------------------------------------------------------------------ |
| 42 | vtkPDataSetWriter::~vtkPDataSetWriter() |
nothing calls this directly
no test coverage detected