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