First page
Back
Continue
Last page
Graphics
IntStack::pop
bool IntStack::pop( int & popValue )
{
if ( ! isEmpty( ) ) {
popValue = stackPtr[ top-- ];
return true;
}
return false;
}