class treenode; class xrt { public: xrt() : root(0) { } xrt(); void add(char *w, unsigned n); void print(void); private: treenode *root; }; /* End of File */