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