#include <vtkInformationVector.h>
Inheritance diagram for vtkInformationVector:
vtkInformationVector stores a vector of zero or more vtkInformation objects corresponding to the input or output information for a vtkAlgorithm. An instance of this class is passed to vtkAlgorithm::ProcessRequest calls.
Definition at line 39 of file vtkInformationVector.h.
Public Types | |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | Copy (vtkInformationVector *from, int deep=0) |
void | PrintSelf (ostream &os, vtkIndent indent) |
int | GetNumberOfInformationObjects () |
void | SetNumberOfInformationObjects (int n) |
void | SetInformationObject (int index, vtkInformation *info) |
vtkInformation * | GetInformationObject (int index) |
void | Append (vtkInformation *info) |
void | Remove (vtkInformation *info) |
virtual void | Register (vtkObjectBase *o) |
virtual void | UnRegister (vtkObjectBase *o) |
Static Public Member Functions | |
static vtkInformationVector * | New () |
static int | IsTypeOf (const char *type) |
static vtkInformationVector * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkInformationVector () | |
~vtkInformationVector () | |
virtual void | ReportReferences (vtkGarbageCollector *) |
Protected Attributes | |
vtkInformationVectorInternals * | Internal |
int | NumberOfInformationObjects |
|
Reimplemented from vtkObject. Definition at line 43 of file vtkInformationVector.h. |
|
|
|
|
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkObject. |
|
Reimplemented from vtkObject. |
|
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 vtkObject. |
|
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 vtkObject. |
|
Reimplemented from vtkObject. |
|
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 vtkObject. |
|
Get/Set the number of information objects in the vector. Setting the number to larger than the current number will create empty vtkInformation instances. Setting the number to smaller than the current number will remove entries from higher indices. Definition at line 51 of file vtkInformationVector.h. |
|
|
|
Get/Set the vtkInformation instance stored at the given index in the vector. The vector will automatically expand to include the index given if necessary. Missing entries in-between will be filled with empty vtkInformation instances. |
|
Get/Set the vtkInformation instance stored at the given index in the vector. The vector will automatically expand to include the index given if necessary. Missing entries in-between will be filled with empty vtkInformation instances. |
|
Append/Remove an information object. |
|
Append/Remove an information object. |
|
Initiate garbage collection when a reference is removed. Reimplemented from vtkObjectBase. |
|
Initiate garbage collection when a reference is removed. Reimplemented from vtkObjectBase. |
|
Copy all information entries from the given vtkInformation instance. Any previously existing entries are removed. If deep==1, a deep copy of the information structure is performed (new instances of any contained vtkInformation and vtkInformationVector objects are created). |
|
Reimplemented from vtkObjectBase. |
|
Definition at line 88 of file vtkInformationVector.h. |
|
Definition at line 90 of file vtkInformationVector.h. |