#include <vtkAlgorithmOutput.h>
vtkAlgorithmOutput is a proxy object returned by the GetOutputPort method of vtkAlgorithm. It may be passed to the SetInputConnection, AddInputConnection, or RemoveInputConnection methods of another vtkAlgorithm to establish a connection between an output and input port. The connection is not stored in the proxy object: it is simply a convenience for creating or removing connections.
Definition at line 37 of file vtkAlgorithmOutput.h.
Public Types | |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | SetIndex (int index) |
int | GetIndex () |
vtkAlgorithm * | GetProducer () |
void | SetProducer (vtkAlgorithm *producer) |
Static Public Member Functions | |
static vtkAlgorithmOutput * | New () |
static int | IsTypeOf (const char *type) |
static vtkAlgorithmOutput * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkAlgorithmOutput () | |
~vtkAlgorithmOutput () | |
Protected Attributes | |
int | Index |
vtkAlgorithm * | Producer |
vtkAlgorithmOutput::vtkAlgorithmOutput | ( | ) | [protected] |
vtkAlgorithmOutput::~vtkAlgorithmOutput | ( | ) | [protected] |
static vtkAlgorithmOutput* vtkAlgorithmOutput::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkObject.
virtual const char* vtkAlgorithmOutput::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkObject.
static int vtkAlgorithmOutput::IsTypeOf | ( | const char * | name | ) | [static] |
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 vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObject.
virtual int vtkAlgorithmOutput::IsA | ( | const char * | name | ) | [virtual] |
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 vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObject.
static vtkAlgorithmOutput* vtkAlgorithmOutput::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkObject.
void vtkAlgorithmOutput::PrintSelf | ( | ostream & | os, | |
vtkIndent | indent | |||
) | [virtual] |
void vtkAlgorithmOutput::SetIndex | ( | int | index | ) |
int vtkAlgorithmOutput::GetIndex | ( | ) |
vtkAlgorithm* vtkAlgorithmOutput::GetProducer | ( | ) |
void vtkAlgorithmOutput::SetProducer | ( | vtkAlgorithm * | producer | ) |
int vtkAlgorithmOutput::Index [protected] |
Definition at line 54 of file vtkAlgorithmOutput.h.
vtkAlgorithm* vtkAlgorithmOutput::Producer [protected] |
Definition at line 55 of file vtkAlgorithmOutput.h.