| 587 | } |
| 588 | |
| 589 | bool mitk::Image::SetVolume(const void *data, int t, int n) |
| 590 | { |
| 591 | // const_cast is no risk for ImportMemoryManagementType == CopyMemory |
| 592 | return SetImportVolume(const_cast<void *>(data), t, n, CopyMemory); |
| 593 | } |
| 594 | |
| 595 | bool mitk::Image::SetChannel(const void *data, int n) |
| 596 | { |
no outgoing calls