home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_07 / 1107122a < prev    next >
Text File  |  1993-05-06  |  412b  |  26 lines

  1. //
  2. // list.h - list interface using a nested class
  3. // with member definitions outside the nested class
  4. //
  5.  
  6. class list
  7.     {
  8. public:
  9.     list(unsigned n);
  10.     ~list();
  11.     void add(unsigned n);
  12.     void print();
  13. private:
  14.     struct node
  15.         {
  16.         node(unsigned n, node *p);
  17.         unsigned number;
  18.         node *next;
  19.         };
  20.     node *first, *last;
  21.     };
  22.  
  23. inline list::node::node(unsigned n, node *p)
  24.     : number(n), next(p) { }
  25.  
  26.