home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_01 / 1001127a < prev    next >
Text File  |  1991-11-19  |  253b  |  16 lines

  1. #ifndef _VSTREAMDEF
  2. #define _VSTREAMDEF
  3.  
  4. #include <iostream.h>
  5.  
  6. extern class Conbuf : public streambuf
  7.         {
  8.         int do_sputn(const char *s,int n);
  9.         int overflow(int=EOF);
  10.         } conbuf;
  11.  
  12. extern ostream conout;
  13.  
  14. #endif
  15.  
  16.