//Header File:	intStack.h
#ifndef INTSTACK_H
#define INTSTACK_H

class intStack
{
private:
	int top;
	int s[100];

public:
	intStack();
	void push(const int);
	int pop();
	bool empty() const;
	bool full() const;
};
#endif
