------------------------------------------------------------------------------
| 206 | |
| 207 | //------------------------------------------------------------------------------ |
| 208 | int vtkImageImport::ComputePipelineMTime(vtkInformation* request, vtkInformationVector** inInfoVec, |
| 209 | vtkInformationVector* outInfoVec, int requestFromOutputPort, vtkMTimeType* mtime) |
| 210 | { |
| 211 | if (this->InvokePipelineModifiedCallbacks()) |
| 212 | { |
| 213 | this->Modified(); |
| 214 | } |
| 215 | // Superclass normally returns our MTime. |
| 216 | return Superclass::ComputePipelineMTime( |
| 217 | request, inInfoVec, outInfoVec, requestFromOutputPort, mtime); |
| 218 | } |
| 219 | |
| 220 | //------------------------------------------------------------------------------ |
| 221 | int vtkImageImport::RequestInformation(vtkInformation* vtkNotUsed(request), |
no test coverage detected