home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_05 / 9n05110a < prev    next >
Text File  |  1991-03-23  |  280b  |  18 lines

  1. /*
  2.  * ln_seq.h - line number sequence interface
  3.  */
  4. class ln_seq
  5.     {
  6.     struct listnode
  7.         {
  8.         unsigned number;
  9.         listnode *next;
  10.         };
  11.     listnode *first, *last;
  12. public:
  13.     ln_seq();
  14.     void add(unsigned n);
  15.     void print();
  16.     };
  17.  
  18.