vtkStructuredGridWriter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00032 #ifndef __vtkStructuredGridWriter_h
00033 #define __vtkStructuredGridWriter_h
00034
00035 #include "vtkDataWriter.h"
00036
00037 class vtkStructuredGrid;
00038
00039 class VTK_IO_EXPORT vtkStructuredGridWriter : public vtkDataWriter
00040 {
00041 public:
00042 static vtkStructuredGridWriter *New();
00043 vtkTypeRevisionMacro(vtkStructuredGridWriter,vtkDataWriter);
00044 void PrintSelf(ostream& os, vtkIndent indent);
00045
00047
00048 void SetInput(vtkStructuredGrid *input);
00049 vtkStructuredGrid *GetInput();
00051
00052 protected:
00053 vtkStructuredGridWriter() {};
00054 ~vtkStructuredGridWriter() {};
00055
00056 void WriteData();
00057 void WriteBlanking(ostream *fp, vtkStructuredGrid *ds);
00058
00059 private:
00060 vtkStructuredGridWriter(const vtkStructuredGridWriter&);
00061 void operator=(const vtkStructuredGridWriter&);
00062 };
00063
00064 #endif
00065
00066