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

vtkCastToConcrete.h

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