home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / MS_VC.50 / VC / INCLUDE / IOSTREAM < prev    next >
Encoding:
Text File  |  1996-11-02  |  786 b   |  38 lines

  1. // iostream standard header
  2. #ifndef _IOSTREAM_
  3. #define _IOSTREAM_
  4. #include <istream>
  5.  
  6. #ifdef  _MSC_VER
  7. #pragma pack(push,8)
  8. #endif  /* _MSC_VER */
  9. _STD_BEGIN
  10.         // OBJECTS
  11. static ios_base::Init _Ios_init;
  12. extern _CRTIMP istream cin;
  13. extern _CRTIMP ostream cout;
  14. extern _CRTIMP ostream cerr, clog;
  15.         // CLASS _Winit
  16. class _CRTIMP _Winit {
  17. public:
  18.     _Winit();
  19.     ~_Winit();
  20. private:
  21.     static int _Init_cnt;
  22.     };
  23.         // WIDE OBJECTS
  24. static _Winit _Wios_init;
  25. extern _CRTIMP wistream wcin;
  26. extern _CRTIMP wostream wcout, wcerr, wclog;
  27. _STD_END
  28. #ifdef  _MSC_VER
  29. #pragma pack(pop)
  30. #endif  /* _MSC_VER */
  31.  
  32. #endif /* _IOSTREAM_ */
  33.  
  34. /*
  35.  * Copyright (c) 1994 by P.J. Plauger.  ALL RIGHTS RESERVED. 
  36.  * Consult your license regarding permissions and restrictions.
  37.  */
  38.