home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_11 / 1011051a < prev    next >
Text File  |  1992-09-08  |  328b  |  21 lines

  1.  
  2. ************************************************
  3. // VSTREAM.H  (Listing 5)
  4. // Video Stream Class  -- Williams June 1990
  5.  
  6. #ifndef _VSTREAMDEF
  7. #define _VSTREAMDEF
  8.  
  9. #include <iostream.h>
  10.  
  11. extern class Conbuf : public streambuf
  12. {
  13. int do_sputn(const char *s,int n);
  14. int overflow(int=EOF);
  15. } conbuf;
  16.  
  17. extern ostream conout;
  18.  
  19. #endif
  20.  
  21.