mirror of
https://gitlab.ethz.ch/gfattori/glocalize.git
synced 2026-05-03 05:34:31 +02:00
11 lines
193 B
C++
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);
|
|
};
|