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

  1. #include <iostream.h>
  2.  
  3. #include "global.h"
  4.  
  5.  
  6. ostream& operator<<(ostream& o, lightsource& l) {l.out(o); return o;}
  7. ostream& operator<<(ostream& o, spotlight& l) {l.out(o); return o;}
  8.  
  9. list<lightsource*> lightsources;
  10.