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

  1. // exios109.cpp
  2. // A buffered stream object
  3. #include <iostream.h>
  4. #include <time.h>
  5.  
  6. void main()
  7. {
  8.    time_t tm = time( NULL ) + 5;
  9.    cout << "Please wait...";
  10.    while ( time( NULL ) < tm )
  11.       ;
  12.    cout << "\nAll done" << endl;
  13. }
  14.