home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_09 / 9n09098b < prev    next >
Text File  |  1991-07-16  |  104b  |  12 lines

  1. class X
  2.     {
  3.     int &r;
  4. public:
  5.     X(int i) : r(i) { }
  6.     ...
  7.     };
  8. ...
  9. int n;
  10. X x(n);
  11.  
  12.