#include <vtkCompositeDataIterator.h>
Inheritance diagram for vtkCompositeDataIterator:
vtkCompositeDataIterator provides an interface for accessing datasets in a collection (vtkCompositeDataIterator). Sub-classes provide the actual implementation.
Definition at line 30 of file vtkCompositeDataIterator.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 ()=0 |
virtual void | GoToNextItem ()=0 |
virtual int | IsDoneWithTraversal ()=0 |
virtual vtkDataObject * | GetCurrentDataObject ()=0 |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkCompositeDataIterator * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkCompositeDataIterator () | |
virtual | ~vtkCompositeDataIterator () |
|
Reimplemented from vtkObject. Reimplemented in vtkHierarchicalDataIterator. Definition at line 33 of file vtkCompositeDataIterator.h. |
|
|
|
|
|
Reimplemented from vtkObject. Reimplemented in vtkHierarchicalDataIterator. |
|
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. Reimplemented in vtkHierarchicalDataIterator. |
|
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 in vtkHierarchicalDataIterator. |
|
Reimplemented from vtkObject. Reimplemented in vtkHierarchicalDataIterator. |
|
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. Reimplemented in vtkHierarchicalDataIterator. |
|
Move the iterator to the beginning of the collection. Definition at line 37 of file vtkCompositeDataIterator.h. |
|
Move the iterator to the beginning of the collection. Implemented in vtkHierarchicalDataIterator. |
|
Move the iterator to the next item in the collection. Implemented in vtkHierarchicalDataIterator. |
|
Test whether the iterator is currently pointing to a valid item. Returns 1 for yes, 0 for no. Implemented in vtkHierarchicalDataIterator. |
|
Get the current item. Valid only when IsDoneWithTraversal() returns 1. Implemented in vtkHierarchicalDataIterator. |