iosfwrap.h 698 B

12345678910111213141516171819202122232425
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // Name: wx/iosfwrap.h
  3. // Purpose: includes the correct stream-related forward declarations
  4. // Author: Jan van Dijk <jan@etpmod.phys.tue.nl>
  5. // Modified by:
  6. // Created: 18.12.2002
  7. // Copyright: wxWidgets team
  8. // Licence: wxWindows licence
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #if wxUSE_STD_IOSTREAM
  11. #if wxUSE_IOSTREAMH
  12. // There is no pre-ANSI iosfwd header so we include the full declarations.
  13. # include <iostream.h>
  14. #else
  15. # include <iosfwd>
  16. #endif
  17. #ifdef __WINDOWS__
  18. # include "wx/msw/winundef.h"
  19. #endif
  20. #endif // wxUSE_STD_IOSTREAM