#include "VolumePrepService.h" #include vtkImageData* VolumePrepService::prepare(vtkImageData* input) { if (!input) return nullptr; vtkImageData* out = vtkImageData::New(); out->DeepCopy(input); out->Modified(); return out; }