mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-03-23 18:54:01 +08:00
These symbols are not defined if no wx headers are included before testing for them, so ensure that we have their real value by including wx/defs.h before such tests.
27 lines
638 B
C++
27 lines
638 B
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/ioswrap.h
|
|
// Purpose: This file is obsolete, include <iostream> directly instead.
|
|
// Author: Vadim Zeitlin
|
|
// Created: 03.02.99
|
|
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#if wxUSE_STD_IOSTREAM
|
|
|
|
#include "wx/beforestd.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include "wx/afterstd.h"
|
|
|
|
#ifdef __WINDOWS__
|
|
# include "wx/msw/winundef.h"
|
|
#endif
|
|
|
|
#endif
|
|
// wxUSE_STD_IOSTREAM
|
|
|