]> git.saurik.com Git - wxWidgets.git/blame - include/wx/iosfwrap.h
add a more readable wrapper for CreateDocument(wxEmptyString, wxDOC_NEW)
[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
7// RCS-ID: $Id$
77ffb593 8// Copyright: wxWidgets team
65571936 9// Licence: wxWindows licence
65f19af1
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12#if wxUSE_STD_IOSTREAM
13
14#if wxUSE_IOSTREAMH
15588590 15 // There is no pre-ANSI iosfwd header so we include the full declarations.
65f19af1
VZ
16# include <iostream.h>
17#else
18# include <iosfwd>
19#endif
20
16549a87
WS
21#ifdef __WXMSW__
22# include "wx/msw/winundef.h"
23#endif
24
15588590 25#endif // wxUSE_STD_IOSTREAM
65f19af1 26