VTK
/Users/kitware/Dashboards/MyTests/VTK_BLD_Release_docs/Utilities/Doxygen/dox/Filters/FlowPaths/vtkParticleTracer.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkParticleTracer.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 =========================================================================*/
00028 #ifndef vtkParticleTracer_h
00029 #define vtkParticleTracer_h
00030 
00031 #include "vtkFiltersFlowPathsModule.h" // For export macro
00032 #include "vtkSmartPointer.h" // For protected ivars.
00033 #include "vtkParticleTracerBase.h"
00034 
00035 class VTKFILTERSFLOWPATHS_EXPORT vtkParticleTracer: public vtkParticleTracerBase
00036 {
00037  public:
00038   vtkTypeMacro(vtkParticleTracer,vtkParticleTracerBase)
00039   void PrintSelf(ostream& os, vtkIndent indent);
00040 
00041   static vtkParticleTracer *New();
00042 
00043  protected:
00044   vtkParticleTracer();
00045   virtual ~vtkParticleTracer(){}
00046   vtkParticleTracer(const vtkParticleTracer&);  // Not implemented.
00047   void operator=(const vtkParticleTracer&);  // Not implemented.
00048   virtual int OutputParticles(vtkPolyData* poly);
00049 };
00050 
00051 
00052 #endif