#include <Stack.h>
Inheritance diagram for PointeredStackItem:
It may be added twice to the same stack and be added to two different stacks, since the pointering technique is designed for this. This results in a little less performance, and if you require a very good one, use the ContainingStack and the ContainingStackItem instead.
Definition at line 253 of file Stack.h.
Public Member Functions | |
void * | GetData () const |
Returns the stored data of the item. | |
PointeredStackItem () | |
Creates a new PointeredStackItem. | |
void | SetData (void *Data) |
Sets the data to be stored in the item. | |
virtual | ~PointeredStackItem () |
Destroys the PointeredStackItem. | |
Private Attributes | |
void * | Data |
The application's data to be stored in the item,. |
|
Creates a new PointeredStackItem.
|
|
Destroys the PointeredStackItem.
|
|
Returns the stored data of the item.
|
|
Sets the data to be stored in the item.
|
|
The application's data to be stored in the item,.
|