2003-01-26 00:12:12 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/iosfwrap.h
|
|
|
|
// Purpose: includes the correct stream-related forward declarations
|
2003-03-21 15:43:19 +00:00
|
|
|
// Author: Jan van Dijk <jan@etpmod.phys.tue.nl>
|
2003-01-26 00:12:12 +00:00
|
|
|
// Modified by:
|
|
|
|
// Created: 18.12.2002
|
2004-05-23 14:56:36 +00:00
|
|
|
// Copyright: wxWidgets team
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2003-01-26 00:12:12 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#if wxUSE_STD_IOSTREAM
|
|
|
|
|
|
|
|
#if wxUSE_IOSTREAMH
|
2003-01-26 00:35:19 +00:00
|
|
|
// There is no pre-ANSI iosfwd header so we include the full declarations.
|
2003-01-26 00:12:12 +00:00
|
|
|
# include <iostream.h>
|
|
|
|
#else
|
|
|
|
# include <iosfwd>
|
|
|
|
#endif
|
|
|
|
|
2012-03-04 00:29:31 +00:00
|
|
|
#ifdef __WINDOWS__
|
2005-04-12 21:06:03 +00:00
|
|
|
# include "wx/msw/winundef.h"
|
|
|
|
#endif
|
|
|
|
|
2003-01-26 00:35:19 +00:00
|
|
|
#endif // wxUSE_STD_IOSTREAM
|
2003-01-26 00:12:12 +00:00
|
|
|
|