home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_07 / 9n07125b < prev    next >
Text File  |  1991-05-09  |  239b  |  18 lines

  1. /*
  2.  * xrt.h - cross-reference table interface
  3.  */
  4. class treenode;
  5.  
  6. class xrt
  7.     {
  8. public:
  9.     xrt() : root(0) { }
  10.     ~xrt();
  11.     void add(char *w, unsigned n);
  12.     void print(void);
  13. private:
  14.     treenode *root;
  15.     };
  16.  
  17.  
  18.