Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkPSphereSource.h

Go to the documentation of this file.
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 =========================================================================*/
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&);  // Not implemented.
00059   void operator=(const vtkPSphereSource&);  // Not implemented.
00060 };
00061 
00062 #endif