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
00038 #ifndef __vtkPassThroughFilter_h
00039 #define __vtkPassThroughFilter_h
00040
00041 #include "vtkDataSetToDataSetFilter.h"
00042
00043 class vtkFieldData;
00044
00045 class VTK_EXPORT vtkPassThroughFilter : public vtkDataSetToDataSetFilter
00046 {
00047 public:
00048 vtkTypeRevisionMacro(vtkPassThroughFilter,vtkDataSetToDataSetFilter);
00049 void PrintSelf(ostream& os, vtkIndent indent);
00050
00052 static vtkPassThroughFilter *New();
00053
00054
00055 protected:
00056
00057 vtkPassThroughFilter() {};
00058 virtual ~vtkPassThroughFilter() {};
00059
00060 void Execute();
00061
00062 private:
00063 vtkPassThroughFilter(const vtkPassThroughFilter&);
00064 void operator=(const vtkPassThroughFilter&);
00065 };
00066
00067 #endif
00068
00069