vtkIVWriter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00042 #ifndef __vtkIVWriter_h
00043 #define __vtkIVWriter_h
00044
00045 #include "vtkPolyDataWriter.h"
00046
00047 class VTK_IO_EXPORT vtkIVWriter : public vtkPolyDataWriter
00048 {
00049 public:
00050 static vtkIVWriter *New();
00051 vtkTypeRevisionMacro(vtkIVWriter,vtkPolyDataWriter);
00052 virtual void PrintSelf(ostream& os, vtkIndent indent);
00053
00054 protected:
00055 vtkIVWriter() {};
00056 ~vtkIVWriter() {};
00057
00058 void WriteData();
00059 void WritePolyData(vtkPolyData *polyData, FILE *fp);
00060 private:
00061 vtkIVWriter(const vtkIVWriter&);
00062 void operator=(const vtkIVWriter&);
00063 };
00064
00065 #endif
00066