]>
Commit | Line | Data |
---|---|---|
3f4a0c5b VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: 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 license | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
38830220 RR |
12 | #if wxUSE_STD_IOSTREAM |
13 | ||
3f4a0c5b VZ |
14 | #if wxUSE_IOSTREAMH |
15 | // N.B. BC++ doesn't have istream.h, ostream.h | |
16 | # include <iostream.h> | |
17 | #else | |
18 | # include <iostream> | |
19 | # if defined(__VISUALC__) || defined(__MWERKS__) | |
20 | using namespace std; | |
21 | # endif | |
22 | #endif | |
38830220 RR |
23 | |
24 | #endif | |
4714ef79 VZ |
25 | // wxUSE_STD_IOSTREAM |
26 |