dox/Parallel/vtkPSphereSource.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
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
void Execute();
00045
private:
00046 vtkPSphereSource(
const vtkPSphereSource&);
00047
void operator=(
const vtkPSphereSource&);
00048 };
00049
00050
#endif