/***********************************************************\
* JOBLIST.H - LINKED LIST CLASS WHICH ACTS AS THE JOB TABLE *
\***********************************************************/


#ifndef TREE_H
#define TREE_H

#include <iostream.h>
#include "leaf.h"

class Tree
{
   public:
		     Tree();
		     ~Tree();
      Leaf           *getRootPtr() {return rootPtr;}
      int            isEmpty() {return (rootPtr == 0);}
      int	     setPiece(const char,int,int);
      Leaf           *rootPtr;
};

#endif
