Add more checks for Intel compiler.
[wxWidgets.git] / include / wx / iosfwrap.h
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
11 #if wxUSE_STD_IOSTREAM
12
13 #if wxUSE_IOSTREAMH
14 // There is no pre-ANSI iosfwd header so we include the full declarations.
15 # include <iostream.h>
16 #else
17 # include <iosfwd>
18 #endif
19
20 #ifdef __WINDOWS__
21 # include "wx/msw/winundef.h"
22 #endif
23
24 #endif // wxUSE_STD_IOSTREAM
25