Files
glocalize/VolumePrepService.h

11 lines
193 B
C++

#pragma once
class vtkImageData;
// Simple volume preparation (deep copy / detaching from loader thread).
class VolumePrepService
{
public:
vtkImageData* prepare(vtkImageData* input);
};