1#ifndef Cpl_Container_Stack_h_
2#define Cpl_Container_Stack_h_
150 m_elements[m_count++] = item;
163 dst = m_elements[--m_count];
187 dst = m_elements[m_count - 1];
199 return &(m_elements[m_count - 1]);
212 return m_count == m_maxItems;
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This template class implements a Stack that has a fixed depth and stores copies of the data items.
Definition Stack.h:32
Stack(unsigned maxElements, ITEM memoryForElements[]) noexcept
Constructor.
Definition Stack.h:129
unsigned getMaxItems(void) const noexcept
This method returns the maximum number of items that can be stored in the Stack.
Definition Stack.h:222
void clearTheStack() noexcept
Empties the Stack.
Definition Stack.h:136
bool pop(ITEM &dst) noexcept
Removes the top item of the stack.
Definition Stack.h:156
bool isFull(void) const noexcept
This method returns true if the Stack is full.
Definition Stack.h:210
unsigned getNumItems(void) const noexcept
This method returns the current number of items in the Stack.
Definition Stack.h:216
bool pop() noexcept
Removes AND discards the top item of the stack.
Definition Stack.h:168
bool push(const ITEM src) noexcept
Adds an item to the top of the stack.
Definition Stack.h:143
ITEM * peekTop() noexcept
Returns a POINTER to the top item of the Stack.
Definition Stack.h:192
bool isEmpty(void) const noexcept
This method returns true if the Stack is empty.
Definition Stack.h:204
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20