home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 3 / RISC_DISC_3.iso / resources / etexts / gems / gemsv / ch5_5 / csg.cxx < prev    next >
C/C++ Source or Header  |  1995-03-04  |  367b  |  11 lines

  1. #include <iostream.h>
  2.  
  3. #include "global.h"
  4.  
  5. ostream& operator<<(ostream& o, csg& c) {c.out(o); return o;}
  6. ostream& operator<<(ostream& o, csguni& c) {c.out(o); return o;}
  7. ostream& operator<<(ostream& o, csgmer& c) {c.out(o); return o;}
  8. ostream& operator<<(ostream& o, csgint& c) {c.out(o); return o;}
  9. ostream& operator<<(ostream& o, csgdif& c) {c.out(o); return o;}
  10.  
  11.