home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_07 / 1007054c < prev    next >
Text File  |  1992-05-06  |  128b  |  10 lines

  1. istream &operator>>(istream &is, rational &r)
  2.     {
  3.     long n, d;
  4.     if (is >> n >> d)
  5.         r = rational(n, d);
  6.     return is;
  7.     }
  8.  
  9.  
  10.