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

  1.  
  2. // Listing 3 - list3.cpp
  3. #include <iostream.h>
  4. #include "vstream.h"
  5. #include "vsmanip.h"
  6.  
  7. main()
  8.   {
  9.   conout<<text_attr(7)<<clear_screen
  10. <<"Example I/O manipulator program\n";
  11.   conout<<go_xy(1,25)<<text_attr(0x70)<<"Bottom Line!"
  12. <<text_attr(7)<<go_xy(1,2);
  13.   conout <<beep<<"Done!\n";
  14.   }
  15.  
  16.  
  17.