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

  1.  
  2. Listing 4
  3.  
  4. rational::operator+(long n)
  5.     {
  6.     rational result(*this);
  7.     return result += rational(n, 1);
  8.     }
  9.  
  10.