]> git.saurik.com Git - wxWidgets.git/blame - include/wx/iosfwrap.h
Add wxDataViewRendererBase::GetEffectiveAlignment() and use it.
[wxWidgets.git] / include / wx / iosfwrap.h
CommitLineData
65f19af1
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/iosfwrap.h
3// Purpose: includes the correct stream-related forward declarations
e835c369 4// Author: Jan van Dijk <jan@etpmod.phys.tue.nl>
65f19af1
VZ
5// Modified by:
6// Created: 18.12.2002
77ffb593 7// Copyright: wxWidgets team
65571936 8// Licence: wxWindows licence
65f19af1
VZ
9///////////////////////////////////////////////////////////////////////////////
10
11#if wxUSE_STD_IOSTREAM
12
13#if wxUSE_IOSTREAMH
15588590 14 // There is no pre-ANSI iosfwd header so we include the full declarations.
65f19af1
VZ
15# include <iostream.h>
16#else
17# include <iosfwd>
18#endif
19
d98a58c5 20#ifdef __WINDOWS__
16549a87
WS
21# include "wx/msw/winundef.h"
22#endif
23
15588590 24#endif // wxUSE_STD_IOSTREAM
65f19af1 25