A couple of fixes to Brazilian Portuguese translations from Felipe.
[wxWidgets.git] / include / wx / ioswrap.h
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 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
10
11 #if wxUSE_STD_IOSTREAM
12
13 #include "wx/beforestd.h"
14
15 #if wxUSE_IOSTREAMH
16 # include <iostream.h>
17 #else
18 # include <iostream>
19 #endif
20
21 #include "wx/afterstd.h"
22
23 #ifdef __WINDOWS__
24 # include "wx/msw/winundef.h"
25 #endif
26
27 #endif
28 // wxUSE_STD_IOSTREAM
29