vtkSliceCubes.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00079 #ifndef __vtkSliceCubes_h
00080 #define __vtkSliceCubes_h
00081
00082 #include "vtkObject.h"
00083
00084 class vtkVolumeReader;
00085
00086 class VTK_PATENTED_EXPORT vtkSliceCubes : public vtkObject
00087 {
00088 public:
00089 static vtkSliceCubes *New();
00090 vtkTypeRevisionMacro(vtkSliceCubes,vtkObject);
00091 void PrintSelf(ostream& os, vtkIndent indent);
00092
00093
00094 void Write() {this->Update();};
00095 void Update();
00096
00098
00099 virtual void SetReader(vtkVolumeReader*);
00100 vtkGetObjectMacro(Reader,vtkVolumeReader);
00102
00104
00105 vtkSetStringMacro(FileName);
00106 vtkGetStringMacro(FileName);
00108
00110
00111 vtkSetMacro(Value,double);
00112 vtkGetMacro(Value,double);
00114
00116
00118 vtkSetStringMacro(LimitsFileName);
00119 vtkGetStringMacro(LimitsFileName);
00121
00122 protected:
00123 vtkSliceCubes();
00124 ~vtkSliceCubes();
00125
00126 void Execute();
00127
00128 vtkVolumeReader *Reader;
00129 char *FileName;
00130 double Value;
00131 char *LimitsFileName;
00132
00133 private:
00134 vtkSliceCubes(const vtkSliceCubes&);
00135 void operator=(const vtkSliceCubes&);
00136 };
00137
00138 #endif
00139