------------------------------------------------------------------------------
| 22 | |
| 23 | //------------------------------------------------------------------------------ |
| 24 | vtkImageWriter::vtkImageWriter() |
| 25 | { |
| 26 | this->FilePrefix = nullptr; |
| 27 | this->FilePattern = nullptr; |
| 28 | this->FileName = nullptr; |
| 29 | this->InternalFileName = nullptr; |
| 30 | this->InternalFileNameSize = 0; |
| 31 | this->FileNumber = 0; |
| 32 | this->FileDimensionality = 2; |
| 33 | |
| 34 | this->FilePattern = new char[strlen("{:s}.{:d}") + 1]; |
| 35 | strcpy(this->FilePattern, "{:s}.{:d}"); |
| 36 | |
| 37 | this->FileLowerLeft = 0; |
| 38 | |
| 39 | this->WriteToMemory = 0; |
| 40 | |
| 41 | this->MinimumFileNumber = this->MaximumFileNumber = 0; |
| 42 | this->FilesDeleted = 0; |
| 43 | this->SetNumberOfOutputPorts(0); |
| 44 | } |
| 45 | |
| 46 | //------------------------------------------------------------------------------ |
| 47 | vtkImageWriter::~vtkImageWriter() |
nothing calls this directly
no test coverage detected