![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This template class implements a Stack that has a fixed depth and stores copies of the data items. More...
This template class implements a Stack that has a fixed depth and stores copies of the data items.
#include <Stack.h>
Public Member Functions | |
Stack (unsigned maxElements, ITEM memoryForElements[]) noexcept | |
Constructor. | |
bool | push (const ITEM src) noexcept |
Adds an item to the top of the stack. | |
bool | pop (ITEM &dst) noexcept |
Removes the top item of the stack. | |
bool | pop () noexcept |
Removes AND discards the top item of the stack. | |
bool | peekTop (ITEM &dst) const noexcept |
Returns the item on the top of the Stack. | |
ITEM * | peekTop () noexcept |
Returns a POINTER to the top item of the Stack. | |
bool | isEmpty (void) const noexcept |
This method returns true if the Stack is empty. | |
bool | isFull (void) const noexcept |
This method returns true if the Stack is full. | |
unsigned | getNumItems (void) const noexcept |
This method returns the current number of items in the Stack. | |
unsigned | getMaxItems (void) const noexcept |
This method returns the maximum number of items that can be stored in the Stack. | |
void | clearTheStack () noexcept |
Empties the Stack. | |
|
noexcept |
Constructor.
The application is responsible for providing the memory for the Stack. The argument ''maxElements' is the number of items that will fit in the memory allocated by 'memoryForElements' - it is NOT the number of bytes of 'memoryForElements'.
|
inlinenoexcept |
Empties the Stack.
All references to the item(s) in the stack are lost.
|
inlinenoexcept |
This method returns the maximum number of items that can be stored in the Stack.
|
inlinenoexcept |
This method returns the current number of items in the Stack.
This method returns true if the Stack is empty.
This method returns true if the Stack is full.
|
inlinenoexcept |
|
inlinenoexcept |
Returns the item on the top of the Stack.
If the stack is empty, the method returns false and no value is returned.
|
inlinenoexcept |
Removes AND discards the top item of the stack.
If the stack is empty, the method returns false and no value is returned.
Removes the top item of the stack.
If the stack is empty, the method returns false and no value is returned.
Adds an item to the top of the stack.
Returns true if successful; else false is returned (e.g. on stack overflow).