#include <ImageSectionThing.h>
Public Member Functions | |
ImageSectionThing (vtkImageData *theImage) | |
~ImageSectionThing () | |
vtkImageData * | getImageData () |
void | setImageData (vtkImageData *theImage) |
Private Attributes | |
vtkImageData * | image |
Definition at line 11 of file ImageSectionThing.h.
ImageSectionThing::ImageSectionThing | ( | vtkImageData * | theImage | ) |
Definition at line 20 of file ImageSectionThing.cxx.
References setImageData().
00021 { 00022 setImageData(theImage); 00023 }
ImageSectionThing::~ImageSectionThing | ( | ) |
vtkImageData * ImageSectionThing::getImageData | ( | ) |
Definition at line 40 of file ImageSectionThing.cxx.
References image.
00041 { 00042 return image; 00043 }
void ImageSectionThing::setImageData | ( | vtkImageData * | theImage | ) |
Definition at line 49 of file ImageSectionThing.cxx.
References image.
Referenced by ImageSectionThing().
00050 { 00051 image = theImage; 00052 }
vtkImageData* ImageSectionThing::image [private] |
Definition at line 55 of file ImageSectionThing.h.
Referenced by getImageData(), and setImageData().