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

dox/Parallel/vtkPassThroughFilter.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkPassThroughFilter.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 =========================================================================*/ 00027 #ifndef __vtkPassThroughFilter_h 00028 #define __vtkPassThroughFilter_h 00029 00030 #include "vtkDataSetToDataSetFilter.h" 00031 00032 class vtkFieldData; 00033 00034 class VTK_EXPORT vtkPassThroughFilter : public vtkDataSetToDataSetFilter 00035 { 00036 public: 00037 vtkTypeRevisionMacro(vtkPassThroughFilter,vtkDataSetToDataSetFilter); 00038 void PrintSelf(ostream& os, vtkIndent indent); 00039 00041 static vtkPassThroughFilter *New(); 00042 00043 00044 protected: 00045 00046 vtkPassThroughFilter() {}; 00047 virtual ~vtkPassThroughFilter() {}; 00048 00049 void Execute(); 00050 00051 private: 00052 vtkPassThroughFilter(const vtkPassThroughFilter&); // Not implemented. 00053 void operator=(const vtkPassThroughFilter&); // Not implemented. 00054 }; 00055 00056 #endif 00057 00058