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

dox/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 =========================================================================*/
00050 #ifndef __vtkCastToConcrete_h
00051 #define __vtkCastToConcrete_h
00052 
00053 #include "vtkDataSetToDataSetFilter.h"
00054 
00055 class VTK_FILTERING_EXPORT vtkCastToConcrete : public vtkDataSetToDataSetFilter
00056 {
00057 
00058 public:
00059   static vtkCastToConcrete *New();
00060   vtkTypeRevisionMacro(vtkCastToConcrete,vtkDataSetToDataSetFilter);
00061   void PrintSelf(ostream& os, vtkIndent indent);
00062 
00063 protected:
00064   vtkCastToConcrete() {};
00065   ~vtkCastToConcrete() {};
00066 
00067   void Execute(); //insures compatibility; satisfies abstract api in vtkFilter
00068   void ExecuteInformation();
00069 private:
00070   vtkCastToConcrete(const vtkCastToConcrete&);  // Not implemented.
00071   void operator=(const vtkCastToConcrete&);  // Not implemented.
00072 };
00073 
00074 #endif