vtkPNMWriter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00036 #ifndef __vtkPNMWriter_h
00037 #define __vtkPNMWriter_h
00038
00039 #include "vtkImageWriter.h"
00040
00041 class VTK_IO_EXPORT vtkPNMWriter : public vtkImageWriter
00042 {
00043 public:
00044 static vtkPNMWriter *New();
00045 vtkTypeRevisionMacro(vtkPNMWriter,vtkImageWriter);
00046 virtual void PrintSelf(ostream& os, vtkIndent indent);
00047
00048 protected:
00049 vtkPNMWriter() {};
00050 ~vtkPNMWriter() {};
00051
00052 virtual void WriteFile(ofstream *file, vtkImageData *data, int extent[6]);
00053 virtual void WriteFileHeader(ofstream *, vtkImageData *);
00054 private:
00055 vtkPNMWriter(const vtkPNMWriter&);
00056 void operator=(const vtkPNMWriter&);
00057 };
00058
00059 #endif
00060
00061