
#ifndef __NODE
#define __NODE

typedef char itemType;

class Node {
 public:
  itemType c;
  Node* next;
};

#endif

