IO/vtkUnstructuredGridWriter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00041 #ifndef __vtkUnstructuredGridWriter_h
00042 #define __vtkUnstructuredGridWriter_h
00043
00044 #include "vtkDataWriter.h"
00045 class vtkUnstructuredGrid;
00046
00047 class VTK_IO_EXPORT vtkUnstructuredGridWriter : public vtkDataWriter
00048 {
00049 public:
00050 static vtkUnstructuredGridWriter *New();
00051 vtkTypeRevisionMacro(vtkUnstructuredGridWriter,vtkDataWriter);
00052 void PrintSelf(ostream& os, vtkIndent indent);
00053
00055
00056 void SetInput(vtkUnstructuredGrid *input);
00057 vtkUnstructuredGrid *GetInput();
00059
00060 protected:
00061 vtkUnstructuredGridWriter() {};
00062 ~vtkUnstructuredGridWriter() {};
00063
00064 void WriteData();
00065
00066 private:
00067 vtkUnstructuredGridWriter(const vtkUnstructuredGridWriter&);
00068 void operator=(const vtkUnstructuredGridWriter&);
00069 };
00070
00071 #endif
00072
00073