Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkIVWriter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkIVWriter.h,v $
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
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&);  // Not implemented.
00062   void operator=(const vtkIVWriter&);  // Not implemented.
00063 };
00064 
00065 #endif
00066