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

dox/Graphics/vtkStructuredPointsGeometryFilter.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkStructuredPointsGeometryFilter.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 =========================================================================*/ 00026 #ifndef __vtkStructuredPointsGeometryFilter_h 00027 #define __vtkStructuredPointsGeometryFilter_h 00028 00029 #include "vtkImageDataGeometryFilter.h" 00030 00031 class VTK_GRAPHICS_EXPORT vtkStructuredPointsGeometryFilter : public vtkImageDataGeometryFilter 00032 { 00033 public: 00034 vtkTypeRevisionMacro(vtkStructuredPointsGeometryFilter,vtkImageDataGeometryFilter); 00035 00037 static vtkStructuredPointsGeometryFilter *New(); 00038 00039 protected: 00040 vtkStructuredPointsGeometryFilter(); 00041 ~vtkStructuredPointsGeometryFilter() {}; 00042 00043 private: 00044 vtkStructuredPointsGeometryFilter(const vtkStructuredPointsGeometryFilter&); // Not implemented 00045 void operator=(const vtkStructuredPointsGeometryFilter&); // Not implemented 00046 }; 00047 00048 #endif