// *********************************************************
// Implementation file StackA.cpp for the ADT stack.
// Array-based implementation.
// *********************************************************
#include "StackA.h"  // header file

stackClass::stackClass(): Top(-1)
{
}  // end default constructor

bool stackClass::StackIsEmpty() const
{
   return bool(Top < 0);
}  // end StackIsEmpty

void stackClass::Push(stackItemType NewItem, bool& Success)
{
   FILL IN CODE HERE
}  // end Push

void stackClass::Pop(bool& Success)
{
   FILL IN CODE HERE
}  // end Pop

void stackClass::Pop(stackItemType& StackTop, bool& Success)
{
   FILL IN CODE HERE
}  // end Pop

void stackClass::GetStackTop(stackItemType& StackTop,
                             bool& Success) const
{
   FILL IN CODE HERE
}  // end GetStackTop
// End of implementation file.