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

dox/Common/vtkStructuredPoints.h

Go to the documentation of this file.
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 =========================================================================*/ 00035 #ifndef __vtkStructuredPoints_h 00036 #define __vtkStructuredPoints_h 00037 00038 #include "vtkImageData.h" 00039 00040 00041 class VTK_COMMON_EXPORT vtkStructuredPoints : public vtkImageData 00042 { 00043 public: 00044 static vtkStructuredPoints *New(); 00045 vtkTypeRevisionMacro(vtkStructuredPoints,vtkImageData); 00046 00048 int GetDataObjectType() {return VTK_STRUCTURED_POINTS;} 00049 00050 protected: 00051 vtkStructuredPoints(); 00052 ~vtkStructuredPoints() {}; 00053 private: 00054 vtkStructuredPoints(const vtkStructuredPoints&); // Not implemented. 00055 void operator=(const vtkStructuredPoints&); // Not implemented. 00056 }; 00057 00058 #endif 00059 00060 00061