Filtering/vtkStructuredGridToStructuredGridFilter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00030 #ifndef __vtkStructuredGridToStructuredGridFilter_h
00031 #define __vtkStructuredGridToStructuredGridFilter_h
00032
00033 #include "vtkStructuredGridSource.h"
00034
00035 class VTK_FILTERING_EXPORT vtkStructuredGridToStructuredGridFilter : public vtkStructuredGridSource
00036 {
00037 public:
00038 vtkTypeRevisionMacro(vtkStructuredGridToStructuredGridFilter,vtkStructuredGridSource);
00039 void PrintSelf(ostream& os, vtkIndent indent);
00040
00042
00043 void SetInput(vtkStructuredGrid *input);
00044 vtkStructuredGrid *GetInput();
00046
00047 protected:
00048 vtkStructuredGridToStructuredGridFilter() {this->NumberOfRequiredInputs = 1;};
00049 ~vtkStructuredGridToStructuredGridFilter() {};
00050 private:
00051 vtkStructuredGridToStructuredGridFilter(const vtkStructuredGridToStructuredGridFilter&);
00052 void operator=(const vtkStructuredGridToStructuredGridFilter&);
00053 };
00054
00055 #endif
00056
00057