dox/Parallel/vtkPassThroughFilter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00027 #ifndef __vtkPassThroughFilter_h
00028 #define __vtkPassThroughFilter_h
00029
00030 #include "vtkDataSetToDataSetFilter.h"
00031
00032 class vtkFieldData;
00033
00034 class VTK_EXPORT vtkPassThroughFilter : public vtkDataSetToDataSetFilter
00035 {
00036 public:
00037 vtkTypeRevisionMacro(vtkPassThroughFilter,vtkDataSetToDataSetFilter);
00038 void PrintSelf(ostream& os, vtkIndent indent);
00039
00041 static vtkPassThroughFilter *New();
00042
00043
00044 protected:
00045
00046 vtkPassThroughFilter() {};
00047 virtual ~vtkPassThroughFilter() {};
00048
00049 void Execute();
00050
00051 private:
00052 vtkPassThroughFilter(const vtkPassThroughFilter&);
00053 void operator=(const vtkPassThroughFilter&);
00054 };
00055
00056 #endif
00057
00058