Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

Imaging/vtkImageAppendComponents.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImageAppendComponents.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00044 #ifndef __vtkImageAppendComponents_h
00045 #define __vtkImageAppendComponents_h
00046 
00047 
00048 #include "vtkImageMultipleInputFilter.h"
00049 
00050 class VTK_IMAGING_EXPORT vtkImageAppendComponents : public vtkImageMultipleInputFilter
00051 {
00052 public:
00053   static vtkImageAppendComponents *New();
00054   vtkTypeRevisionMacro(vtkImageAppendComponents,vtkImageMultipleInputFilter);
00055 
00056 protected:
00057   vtkImageAppendComponents() {};
00058   ~vtkImageAppendComponents() {};
00059   
00060   void ExecuteInformation(vtkImageData **inputs, vtkImageData *output);
00061   void ExecuteInformation(){this->vtkImageMultipleInputFilter::ExecuteInformation();};
00062   void ThreadedExecute(vtkImageData **inDatas, vtkImageData *outData,
00063                        int extent[6], int id);
00064 private:
00065   vtkImageAppendComponents(const vtkImageAppendComponents&);  // Not implemented.
00066   void operator=(const vtkImageAppendComponents&);  // Not implemented.
00067 };
00068 
00069 #endif
00070 
00071 
00072 
00073