home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_03 / 1003072c < prev    next >
Text File  |  1992-01-13  |  140b  |  11 lines

  1.  
  2. Listing 6
  3.  
  4. inline rational
  5.     operator+(const rational &r1, const rational &r2)
  6.     {
  7.     rational result(r1);
  8.     return result += r2;
  9.     }
  10.  
  11.