mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
d14efe561b
long become wxWidgets 2.9.2, which in turn is expected to be the last 2.9 release before the 3.0 stable release. Since the full wxWidgets distribution is rather large, I have imported only the parts that we use, on a subdirectory basis: art include/wx/*.* include/wx/aui include/wx/cocoa include/wx/generic include/wx/gtk include/wx/meta include/wx/msw include/wx/osx include/wx/persist include/wx/private include/wx/protocol include/wx/unix src/aui src/common src/generic src/gtk src/msw src/osx src/unix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7380 8ced0084-cf51-0410-be5f-012b33b47a6e
27 lines
761 B
C
27 lines
761 B
C
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/iosfwrap.h
|
|
// Purpose: includes the correct stream-related forward declarations
|
|
// Author: Jan van Dijk <jan@etpmod.phys.tue.nl>
|
|
// Modified by:
|
|
// Created: 18.12.2002
|
|
// RCS-ID: $Id: iosfwrap.h 33555 2005-04-12 21:06:03Z ABX $
|
|
// Copyright: wxWidgets team
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if wxUSE_STD_IOSTREAM
|
|
|
|
#if wxUSE_IOSTREAMH
|
|
// There is no pre-ANSI iosfwd header so we include the full declarations.
|
|
# include <iostream.h>
|
|
#else
|
|
# include <iosfwd>
|
|
#endif
|
|
|
|
#ifdef __WXMSW__
|
|
# include "wx/msw/winundef.h"
|
|
#endif
|
|
|
|
#endif // wxUSE_STD_IOSTREAM
|
|
|