VTK
dox/Filters/Parallel/vtkPSphereSource.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkPSphereSource.h
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 "vtkFiltersParallelModule.h" // For export macro
00023 #include "vtkSphereSource.h"
00024 
00025 class VTKFILTERSPARALLEL_EXPORT vtkPSphereSource : public vtkSphereSource
00026 {
00027 public:
00028   vtkTypeMacro(vtkPSphereSource,vtkSphereSource);
00029 
00031 
00034   static vtkPSphereSource *New();
00035   virtual void PrintSelf(ostream& os, vtkIndent indent);
00037 
00039   unsigned long GetEstimatedMemorySize();
00040 
00041 protected:
00042   vtkPSphereSource() {};
00043   ~vtkPSphereSource() {};
00044 
00045   virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
00046 private:
00047   vtkPSphereSource(const vtkPSphereSource&);  // Not implemented.
00048   void operator=(const vtkPSphereSource&);  // Not implemented.
00049 };
00050 
00051 #endif