home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK4 / SAMPLES / IOSTUTOR / EXIOS204.CP$ / EXIOS204
Encoding:
Text File  |  1991-11-25  |  373 b   |  17 lines

  1. // exios204.cpp
  2. // hstream Driver program copies 'cin' to 'cout' until end-of-file
  3. #include "hstream.h"
  4.  
  5. hstreambuf hsb( 1 ); // 1=stdout
  6.  
  7. void main()
  8. {
  9.     char line[200];
  10.     cout = &hsb; // Associates the HP LaserJet streambuf to cout
  11.     while( 1 ) {
  12.        cin.getline( line, 200 );
  13.        if( !cin.good() ) break;
  14.        cout << line << endl;
  15.     }
  16. }
  17.