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

  1.  
  2. Listing 9
  3.  
  4. //
  5. // operator-
  6. //
  7. rational rational::operator-(rational r)
  8.     {
  9.     return rational(num * r.denom - r.num * denom,
  10.         denom * r.denom);
  11.     }
  12.  
  13. //
  14. // operator-= written in terms of operator-
  15. //
  16. rational &rational::operator-=(rational r)
  17.     {
  18.     return *this = *this - r;
  19.     }
  20.