VTK
vtkCastToConcrete.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCastToConcrete.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
46 #ifndef __vtkCastToConcrete_h
47 #define __vtkCastToConcrete_h
48 
49 #include "vtkDataSetAlgorithm.h"
50 
51 class VTK_FILTERING_EXPORT vtkCastToConcrete : public vtkDataSetAlgorithm
52 {
53 
54 public:
55  static vtkCastToConcrete *New();
56  vtkTypeMacro(vtkCastToConcrete,vtkDataSetAlgorithm);
57  void PrintSelf(ostream& os, vtkIndent indent);
58 
59 protected:
62 
63  virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); //insures compatibility; satisfies abstract api in vtkFilter
64  virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
65 private:
66  vtkCastToConcrete(const vtkCastToConcrete&); // Not implemented.
67  void operator=(const vtkCastToConcrete&); // Not implemented.
68 };
69 
70 #endif
Store vtkAlgorithm input/output information.
#define VTK_FILTERING_EXPORT
a simple class to control print indentation
Definition: vtkIndent.h:37
works around type-checking limitations
Store zero or more vtkInformation instances.