
#include "node.h"

class Stack {
  Node *Front;

public:
  Stack ();
  ~Stack ();
  bool Push (char);
  bool Pop (char&);
  bool Top (char&);
  bool isEmpty ();

  bool Print ();
  bool Reverse ();
};

