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

Filtering/vtkCastToConcrete.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkCastToConcrete.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 =========================================================================*/
00063 #ifndef __vtkCastToConcrete_h
00064 #define __vtkCastToConcrete_h
00065 
00066 #include "vtkDataSetToDataSetFilter.h"
00067 
00068 class VTK_FILTERING_EXPORT vtkCastToConcrete : public vtkDataSetToDataSetFilter
00069 {
00070 
00071 public:
00072   static vtkCastToConcrete *New();
00073   vtkTypeRevisionMacro(vtkCastToConcrete,vtkDataSetToDataSetFilter);
00074   void PrintSelf(ostream& os, vtkIndent indent);
00075 
00076 protected:
00077   vtkCastToConcrete() {};
00078   ~vtkCastToConcrete() {};
00079 
00080   void Execute(); //insures compatibility; satisfies abstract api in vtkFilter
00081   void ExecuteInformation();
00082 private:
00083   vtkCastToConcrete(const vtkCastToConcrete&);  // Not implemented.
00084   void operator=(const vtkCastToConcrete&);  // Not implemented.
00085 };
00086 
00087 #endif