You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.6 KiB
53 lines
1.6 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkPassThroughFilter.h,v $
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notice for more information.
|
|
|
|
=========================================================================*/
|
|
// .NAME vtkPassThroughFilter - Filter which shallow copies it's input to it's output
|
|
// .SECTION Description
|
|
// This filter shallow copies it's input to it's output. It is normally
|
|
// used by PVSources with multiple outputs as the VTK filter in the
|
|
// dummy connection objects at each output.
|
|
|
|
#ifndef __vtkPassThroughFilter_h
|
|
#define __vtkPassThroughFilter_h
|
|
|
|
#include "vtkDataSetAlgorithm.h"
|
|
|
|
class vtkFieldData;
|
|
|
|
class VTK_PARALLEL_EXPORT vtkPassThroughFilter : public vtkDataSetAlgorithm
|
|
{
|
|
public:
|
|
vtkTypeRevisionMacro(vtkPassThroughFilter,vtkDataSetAlgorithm);
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
|
|
|
// Description:
|
|
// Create a new vtkPassThroughFilter.
|
|
static vtkPassThroughFilter *New();
|
|
|
|
|
|
protected:
|
|
|
|
vtkPassThroughFilter() {};
|
|
virtual ~vtkPassThroughFilter() {};
|
|
|
|
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
|
|
|
|
private:
|
|
vtkPassThroughFilter(const vtkPassThroughFilter&); // Not implemented.
|
|
void operator=(const vtkPassThroughFilter&); // Not implemented.
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|