vtkPSphereSource.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00031 #ifndef __vtkPSphereSource_h
00032 #define __vtkPSphereSource_h
00033
00034 #include "vtkSphereSource.h"
00035
00036 class VTK_PARALLEL_EXPORT vtkPSphereSource : public vtkSphereSource
00037 {
00038 public:
00039 vtkTypeRevisionMacro(vtkPSphereSource,vtkSphereSource);
00040
00042
00045 static vtkPSphereSource *New();
00046 virtual void PrintSelf(ostream& os, vtkIndent indent);
00048
00050 unsigned long GetEstimatedMemorySize();
00051
00052 protected:
00053 vtkPSphereSource() {};
00054 ~vtkPSphereSource() {};
00055
00056 void Execute();
00057 private:
00058 vtkPSphereSource(const vtkPSphereSource&);
00059 void operator=(const vtkPSphereSource&);
00060 };
00061
00062 #endif