#include <vtkInformationIterator.h>
vtkInformationIterator can be used to iterate over the keys of an information object. The corresponding values can then be directly obtained from the information object using the keys.
Definition at line 34 of file vtkInformationIterator.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 | InitTraversal () |
virtual void | GoToFirstItem () |
virtual void | GoToNextItem () |
virtual int | IsDoneWithTraversal () |
virtual vtkInformationKey * | GetCurrentKey () |
void | SetInformation (vtkInformation *) |
virtual vtkInformation * | GetInformation () |
Static Public Member Functions | |
static vtkInformationIterator * | New () |
static int | IsTypeOf (const char *type) |
static vtkInformationIterator * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkInformationIterator () | |
~vtkInformationIterator () | |
Protected Attributes | |
vtkInformation * | Information |
unsigned short | Index |
vtkInformationIterator::vtkInformationIterator | ( | ) | [protected] |
vtkInformationIterator::~vtkInformationIterator | ( | ) | [protected] |
static vtkInformationIterator* vtkInformationIterator::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkObject.
virtual const char* vtkInformationIterator::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkObject.
static int vtkInformationIterator::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 vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkObject.
virtual int vtkInformationIterator::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 vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkObject.
static vtkInformationIterator* vtkInformationIterator::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkObject.
void vtkInformationIterator::PrintSelf | ( | ostream & | os, | |
vtkIndent | indent | |||
) | [virtual] |
void vtkInformationIterator::SetInformation | ( | vtkInformation * | ) |
Set/Get the information to iterator over.
virtual vtkInformation* vtkInformationIterator::GetInformation | ( | ) | [virtual] |
Set/Get the information to iterator over.
void vtkInformationIterator::InitTraversal | ( | ) | [inline] |
Move the iterator to the beginning of the collection.
Definition at line 48 of file vtkInformationIterator.h.
virtual void vtkInformationIterator::GoToFirstItem | ( | ) | [virtual] |
Move the iterator to the beginning of the collection.
virtual void vtkInformationIterator::GoToNextItem | ( | ) | [virtual] |
Move the iterator to the next item in the collection.
virtual int vtkInformationIterator::IsDoneWithTraversal | ( | ) | [virtual] |
Test whether the iterator is currently pointing to a valid item. Returns 1 for yes, 0 for no.
virtual vtkInformationKey* vtkInformationIterator::GetCurrentKey | ( | ) | [virtual] |
Get the current item. Valid only when IsDoneWithTraversal() returns 1.
vtkInformation* vtkInformationIterator::Information [protected] |
Definition at line 68 of file vtkInformationIterator.h.
unsigned short vtkInformationIterator::Index [protected] |
Definition at line 69 of file vtkInformationIterator.h.