]>
Commit | Line | Data |
---|---|---|
1 | /////////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/ioswrap.h | |
3 | // Purpose: includes the correct iostream headers for current compiler | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 03.02.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #if wxUSE_STD_IOSTREAM | |
13 | ||
14 | #include "wx/beforestd.h" | |
15 | ||
16 | #if wxUSE_IOSTREAMH | |
17 | # include <iostream.h> | |
18 | #else | |
19 | # include <iostream> | |
20 | #endif | |
21 | ||
22 | #include "wx/afterstd.h" | |
23 | ||
24 | #ifdef __WXMSW__ | |
25 | # include "wx/msw/winundef.h" | |
26 | #endif | |
27 | ||
28 | #endif | |
29 | // wxUSE_STD_IOSTREAM | |
30 |