VTK
vtkImageTwoInputFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageTwoInputFilter.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 __vtkImageTwoInputFilter_h
26 #define __vtkImageTwoInputFilter_h
27 
28 #include "vtkImageMultipleInputFilter.h"
29 
30 class VTK_FILTERING_EXPORT vtkImageTwoInputFilter : public vtkImageMultipleInputFilter
31 {
32 public:
33  vtkTypeMacro(vtkImageTwoInputFilter,vtkImageMultipleInputFilter);
34  void PrintSelf(ostream& os, vtkIndent indent);
35 
38  virtual void SetInput1(vtkImageData *input);
39 
42  virtual void SetInput2(vtkImageData *input);
43 
45 
46  vtkImageData *GetInput1();
47  vtkImageData *GetInput2();
49 
50 protected:
53 
54 private:
55  vtkImageTwoInputFilter(const vtkImageTwoInputFilter&); // Not implemented.
56  void operator=(const vtkImageTwoInputFilter&); // Not implemented.
57 };
58 
59 #endif
60 
61 
62 
63 
64 
65 
66 
67 
#define VTK_FILTERING_EXPORT
a simple class to control print indentation
Definition: vtkIndent.h:37
topologically and geometrically regular array of data
Definition: vtkImageData.h:43
Generic superclass for filters that have two inputs.