00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkStructuredPoints.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 =========================================================================*/ 00048 #ifndef __vtkStructuredPoints_h 00049 #define __vtkStructuredPoints_h 00050 00051 #include "vtkImageData.h" 00052 00053 00054 class VTK_COMMON_EXPORT vtkStructuredPoints : public vtkImageData 00055 { 00056 public: 00057 static vtkStructuredPoints *New(); 00058 vtkTypeRevisionMacro(vtkStructuredPoints,vtkImageData); 00059 00061 int GetDataObjectType() {return VTK_STRUCTURED_POINTS;} 00062 00063 protected: 00064 vtkStructuredPoints(); 00065 ~vtkStructuredPoints() {}; 00066 private: 00067 vtkStructuredPoints(const vtkStructuredPoints&); // Not implemented. 00068 void operator=(const vtkStructuredPoints&); // Not implemented. 00069 }; 00070 00071 #endif 00072 00073 00074