home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_01 / 1001097a < prev    next >
Text File  |  1991-11-17  |  145b  |  13 lines

  1.  
  2. Listing 6
  3.  
  4. //
  5. // operator=
  6. //
  7. rational &rational::operator=(const rational &r)
  8.     {
  9.     num = r.num;
  10.     denom = r.denom;
  11.     return *this;
  12.     }
  13.