#include <vtkCastToConcrete.h>
Inheritance diagram for vtkCastToConcrete:
vtkCastToConcrete is a filter that works around type-checking limitations in the filter classes. Some filters generate abstract types on output, and cannot be connected to the input of filters requiring a concrete input type. For example, vtkElevationFilter generates vtkDataSet for output, and cannot be connected to vtkDecimate, because vtkDecimate requires vtkPolyData as input. This is true even though (in this example) the input to vtkElevationFilter is of type vtkPolyData, and you know the output of vtkElevationFilter is the same type as its input.
vtkCastToConcrete performs run-time checking to insure that output type is of the right type. An error message will result if you try to cast an input type improperly. Otherwise, the filter performs the appropriate cast and returns the data.
Definition at line 64 of file vtkCastToConcrete.h.
Public Types | |
typedef vtkDataSetToDataSetFilter | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
Static Public Member Functions | |
vtkCastToConcrete * | New () |
int | IsTypeOf (const char *type) |
vtkCastToConcrete * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkCastToConcrete () | |
~vtkCastToConcrete () | |
void | Execute () |
void | ExecuteInformation () |
|
Reimplemented from vtkDataSetToDataSetFilter. Definition at line 69 of file vtkCastToConcrete.h. |
|
Definition at line 73 of file vtkCastToConcrete.h. |
|
Definition at line 74 of file vtkCastToConcrete.h. |
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkAlgorithm. |
|
Reimplemented from vtkDataSetToDataSetFilter. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkDataSetToDataSetFilter. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkDataSetToDataSetFilter. |
|
Reimplemented from vtkDataSetToDataSetFilter. |
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from vtkDataSetToDataSetFilter. |
|
This method is the old style execute method Reimplemented from vtkSource. |
|
Reimplemented from vtkDataSetToDataSetFilter. |