1999-02-03 11:48:12 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2003-01-25 19:12:12 -05:00
|
|
|
// Name: wx/ioswrap.h
|
1999-02-03 11:48:12 -05:00
|
|
|
// Purpose: includes the correct iostream headers for current compiler
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 03.02.99
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1999-02-03 11:48:12 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-06-27 06:39:38 -04:00
|
|
|
#if wxUSE_STD_IOSTREAM
|
|
|
|
|
2007-07-22 05:20:42 -04:00
|
|
|
#include "wx/beforestd.h"
|
|
|
|
|
1999-02-03 11:48:12 -05:00
|
|
|
#if wxUSE_IOSTREAMH
|
|
|
|
# include <iostream.h>
|
|
|
|
#else
|
|
|
|
# include <iostream>
|
|
|
|
#endif
|
1999-06-27 06:39:38 -04:00
|
|
|
|
2007-07-22 05:20:42 -04:00
|
|
|
#include "wx/afterstd.h"
|
|
|
|
|
2012-03-03 19:29:31 -05:00
|
|
|
#ifdef __WINDOWS__
|
2005-04-12 17:06:03 -04:00
|
|
|
# include "wx/msw/winundef.h"
|
|
|
|
#endif
|
|
|
|
|
1999-06-27 06:39:38 -04:00
|
|
|
#endif
|
1999-06-27 18:06:33 -04:00
|
|
|
// wxUSE_STD_IOSTREAM
|
|
|
|
|