Filtering/vtkDataSetToUnstructuredGridFilter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00044 #ifndef __vtkDataSetToUnstructuredGridFilter_h
00045 #define __vtkDataSetToUnstructuredGridFilter_h
00046
00047 #include "vtkUnstructuredGridSource.h"
00048
00049 class vtkDataSet;
00050
00051 class VTK_FILTERING_EXPORT vtkDataSetToUnstructuredGridFilter : public vtkUnstructuredGridSource
00052 {
00053 public:
00054 vtkTypeRevisionMacro(vtkDataSetToUnstructuredGridFilter,vtkUnstructuredGridSource);
00055 void PrintSelf(ostream& os, vtkIndent indent);
00056
00058
00059 virtual void SetInput(vtkDataSet *input);
00060 vtkDataSet *GetInput();
00062
00063 protected:
00064 vtkDataSetToUnstructuredGridFilter() {this->NumberOfRequiredInputs = 1;};
00065 ~vtkDataSetToUnstructuredGridFilter() {};
00066
00067 private:
00068 vtkDataSetToUnstructuredGridFilter(const vtkDataSetToUnstructuredGridFilter&);
00069 void operator=(const vtkDataSetToUnstructuredGridFilter&);
00070 };
00071
00072 #endif
00073
00074