home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / s / sep91.zip / 9N09098B < prev    next >
Text File  |  1991-07-17  |  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.