------------------------------------------------------------------------------ Specify the input data or filter.
| 153 | //------------------------------------------------------------------------------ |
| 154 | // Specify the input data or filter. |
| 155 | vtkUnstructuredGrid* vtkEnSightWriter::GetInput() |
| 156 | { |
| 157 | if (this->GetNumberOfInputConnections(0) < 1) |
| 158 | { |
| 159 | return nullptr; |
| 160 | } |
| 161 | else if (this->TmpInput) |
| 162 | { |
| 163 | return this->TmpInput; |
| 164 | } |
| 165 | else |
| 166 | { |
| 167 | return (vtkUnstructuredGrid*)(this->Superclass::GetInput()); |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | //------------------------------------------------------------------------------ |
| 172 | void vtkEnSightWriter::WriteData() |
no test coverage detected