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 
29 
31 {
32 public:
33  static vtkPassThrough* New();
35  void PrintSelf(ostream& os, vtkIndent indent);
36 
39 
41 
45  vtkSetMacro(DeepCopyInput, int);
46  vtkGetMacro(DeepCopyInput, int);
47  vtkBooleanMacro(DeepCopyInput, int);
49 
50 protected:
52  ~vtkPassThrough();
53 
54  virtual int RequestData(
58 
60 
61 private:
62  vtkPassThrough(const vtkPassThrough&); // Not implemented
63  void operator=(const vtkPassThrough&); // Not implemented
64 };
65 
66 #endif
67