Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkImageTwoInputFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImageTwoInputFilter.h,v $
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00036 #ifndef __vtkImageTwoInputFilter_h
00037 #define __vtkImageTwoInputFilter_h
00038 
00039 #include "vtkImageMultipleInputFilter.h"
00040 
00041 class VTK_FILTERING_EXPORT vtkImageTwoInputFilter : public vtkImageMultipleInputFilter
00042 {
00043 public:
00044   vtkTypeRevisionMacro(vtkImageTwoInputFilter,vtkImageMultipleInputFilter);
00045   void PrintSelf(ostream& os, vtkIndent indent);
00046   
00049   virtual void SetInput1(vtkImageData *input);
00050   
00053   virtual void SetInput2(vtkImageData *input);
00054   
00056 
00057   vtkImageData *GetInput1();
00058   vtkImageData *GetInput2();
00060   
00061 protected:
00062   vtkImageTwoInputFilter();
00063   ~vtkImageTwoInputFilter() {};
00064 
00065 private:
00066   vtkImageTwoInputFilter(const vtkImageTwoInputFilter&);  // Not implemented.
00067   void operator=(const vtkImageTwoInputFilter&);  // Not implemented.
00068 };
00069 
00070 #endif
00071 
00072 
00073 
00074 
00075 
00076 
00077 
00078