/////// ArbStack.C /////// #include "ArbStack.h" Arbent ArbStack::pop() { if ( is_empty() ) return(NULL); // pop failed Arbent tmp = content(first()); // popped item shorten(1); // stack popped return(tmp); }