00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkPSphereSource.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 =========================================================================*/ 00019 #ifndef __vtkPSphereSource_h 00020 #define __vtkPSphereSource_h 00021 00022 #include "vtkSphereSource.h" 00023 00024 class VTK_PARALLEL_EXPORT vtkPSphereSource : public vtkSphereSource 00025 { 00026 public: 00027 vtkTypeRevisionMacro(vtkPSphereSource,vtkSphereSource); 00028 00030 00033 static vtkPSphereSource *New(); 00034 virtual void PrintSelf(ostream& os, vtkIndent indent); 00036 00038 unsigned long GetEstimatedMemorySize(); 00039 00040 protected: 00041 vtkPSphereSource() {}; 00042 ~vtkPSphereSource() {}; 00043 00044 virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); 00045 private: 00046 vtkPSphereSource(const vtkPSphereSource&); // Not implemented. 00047 void operator=(const vtkPSphereSource&); // Not implemented. 00048 }; 00049 00050 #endif