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

dox/IO/vtkStructuredPointsWriter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkStructuredPointsWriter.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00028 #ifndef __vtkStructuredPointsWriter_h
00029 #define __vtkStructuredPointsWriter_h
00030 
00031 #include "vtkDataWriter.h"
00032 
00033 class vtkImageData;
00034 
00035 class VTK_IO_EXPORT vtkStructuredPointsWriter : public vtkDataWriter
00036 {
00037 public:
00038   static vtkStructuredPointsWriter *New();
00039   vtkTypeRevisionMacro(vtkStructuredPointsWriter,vtkDataWriter);
00040   void PrintSelf(ostream& os, vtkIndent indent);
00041 
00043 
00044   void SetInput(vtkImageData *input);
00045   vtkImageData *GetInput();
00047                                
00048 protected:
00049   vtkStructuredPointsWriter() {};
00050   ~vtkStructuredPointsWriter() {};
00051 
00052   void WriteData();
00053 
00054 private:
00055   vtkStructuredPointsWriter(const vtkStructuredPointsWriter&);  // Not implemented.
00056   void operator=(const vtkStructuredPointsWriter&);  // Not implemented.
00057 };
00058 
00059 #endif
00060 
00061