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
00023
#ifndef __vtkPassThroughFilter_h
00024
#define __vtkPassThroughFilter_h
00025
00026
#include "vtkDataSetToDataSetFilter.h"
00027
00028
class vtkFieldData;
00029
00030 class VTK_EXPORT vtkPassThroughFilter :
public vtkDataSetToDataSetFilter
00031 {
00032
public:
00033 vtkTypeRevisionMacro(vtkPassThroughFilter,
vtkDataSetToDataSetFilter);
00034
void PrintSelf(ostream& os,
vtkIndent indent);
00035
00037
static vtkPassThroughFilter *
New();
00038
00039
00040
protected:
00041
00042 vtkPassThroughFilter() {};
00043 virtual ~vtkPassThroughFilter() {};
00044
00045
void Execute();
00046
00047
private:
00048 vtkPassThroughFilter(
const vtkPassThroughFilter&);
00049
void operator=(
const vtkPassThroughFilter&);
00050 };
00051
00052
#endif
00053
00054