VTK
vtkPassThrough.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPassThrough.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
25 #ifndef vtkPassThrough_h
26 #define vtkPassThrough_h
27 
28 #include "vtkFiltersGeneralModule.h" // For export macro
30 
32 {
33 public:
34  static vtkPassThrough* New();
36  void PrintSelf(ostream& os, vtkIndent indent);
37 
40 
42 
46  vtkSetMacro(DeepCopyInput, int);
47  vtkGetMacro(DeepCopyInput, int);
48  vtkBooleanMacro(DeepCopyInput, int);
50 
51 protected:
54 
55  virtual int RequestData(
59 
61 
62 private:
63  vtkPassThrough(const vtkPassThrough&); // Not implemented
64  void operator=(const vtkPassThrough&); // Not implemented
65 };
66 
67 #endif
68 
vtkPassThrough::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkPassInputTypeAlgorithm.h
vtkPassThrough::DeepCopyInput
int DeepCopyInput
Definition: vtkPassThrough.h:60
vtkPassThrough::vtkPassThrough
vtkPassThrough()
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkPassThrough::New
static vtkPassThrough * New()
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkPassThrough::~vtkPassThrough
~vtkPassThrough()
vtkX3D::port
@ port
Definition: vtkX3D.h:447
vtkPassThrough::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info)
vtkFiltersGeneralModule.h
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
VTKFILTERSGENERAL_EXPORT
#define VTKFILTERSGENERAL_EXPORT
Definition: vtkFiltersGeneralModule.h:15
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkBooleanMacro
vtkBooleanMacro(IgnoreDriverBugs, bool)
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
vtkX3D::info
@ info
Definition: vtkX3D.h:376
vtkPassThrough
Shallow copies the input into the output.
Definition: vtkPassThrough.h:32
vtkPassThrough::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkPassInputTypeAlgorithm
Superclass for algorithms that produce output of the same type as input.
Definition: vtkPassInputTypeAlgorithm.h:50