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