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

vtkStructuredPoints.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkStructuredPoints.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 =========================================================================*/
00041 #ifndef __vtkStructuredPoints_h
00042 #define __vtkStructuredPoints_h
00043 
00044 #include "vtkImageData.h"
00045 
00046   
00047 class VTK_FILTERING_EXPORT vtkStructuredPoints : public vtkImageData
00048 {
00049 public:
00050   static vtkStructuredPoints *New();
00051   vtkTypeRevisionMacro(vtkStructuredPoints,vtkImageData);
00052 
00054   int GetDataObjectType() {return VTK_STRUCTURED_POINTS;}
00055 
00056 protected:
00057   vtkStructuredPoints();
00058   ~vtkStructuredPoints() {};
00059 private:
00060   vtkStructuredPoints(const vtkStructuredPoints&);  // Not implemented.
00061   void operator=(const vtkStructuredPoints&);  // Not implemented.
00062 };
00063 
00064 #endif
00065 
00066 
00067