]> git.saurik.com Git - wxWidgets.git/blame - include/wx/ioswrap.h
Add wxDataViewRendererBase::GetEffectiveAlignment() and use it.
[wxWidgets.git] / include / wx / ioswrap.h
CommitLineData
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
3f4a0c5b 7// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 8// Licence: wxWindows licence
3f4a0c5b
VZ
9///////////////////////////////////////////////////////////////////////////////
10
38830220
RR
11#if wxUSE_STD_IOSTREAM
12
d6f513f8
VS
13#include "wx/beforestd.h"
14
3f4a0c5b 15#if wxUSE_IOSTREAMH
3f4a0c5b
VZ
16# include <iostream.h>
17#else
18# include <iostream>
3f4a0c5b 19#endif
38830220 20
d6f513f8
VS
21#include "wx/afterstd.h"
22
d98a58c5 23#ifdef __WINDOWS__
16549a87
WS
24# include "wx/msw/winundef.h"
25#endif
26
38830220 27#endif
4714ef79
VZ
28 // wxUSE_STD_IOSTREAM
29