]>
Commit | Line | Data |
---|---|---|
3f4a0c5b | 1 | /////////////////////////////////////////////////////////////////////////////// |
65f19af1 | 2 | // Name: wx/ioswrap.h |
3f4a0c5b VZ |
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> | |
65571936 | 9 | // Licence: wxWindows licence |
3f4a0c5b VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
38830220 RR |
12 | #if wxUSE_STD_IOSTREAM |
13 | ||
d6f513f8 VS |
14 | #include "wx/beforestd.h" |
15 | ||
3f4a0c5b | 16 | #if wxUSE_IOSTREAMH |
3f4a0c5b VZ |
17 | # include <iostream.h> |
18 | #else | |
19 | # include <iostream> | |
3f4a0c5b | 20 | #endif |
38830220 | 21 | |
d6f513f8 VS |
22 | #include "wx/afterstd.h" |
23 | ||
d98a58c5 | 24 | #ifdef __WINDOWS__ |
16549a87 WS |
25 | # include "wx/msw/winundef.h" |
26 | #endif | |
27 | ||
38830220 | 28 | #endif |
4714ef79 VZ |
29 | // wxUSE_STD_IOSTREAM |
30 |