Documentation for vtkStack

vtkStack - create and manipulate lists of objects

Super Class: vtkObject

Description:

vtkStack is a general object for creating and manipulating lists of objects. vtkStack also serves as a base class for lists of specific types of objects.

 

Methods:

void vtkStack ()
void vtkStack ()
void PrintSelf (unknown & ,vtkIndent )
static vtkStack *New ()
const char *GetClassName ()
void Push (vtkObject *)
vtkObject *Pop ()
vtkObject *GetTop ()
int GetNumberOfItems ()

 

Detailed Method Descriptions:

Add an object to the top of the stack. Does not prevent duplicate entries.

void Push (vtkObject *)

Remove an object from the top of the list.

vtkObject *Pop ()

Return the number of objects in the stack.

vtkObject *GetTop ()
int GetNumberOfItems ()