]> git.saurik.com Git - wxWidgets.git/blame - include/wx/ioswrap.h
I was stupid enough to reorganise the way font changes get stored and applied,
[wxWidgets.git] / include / wx / ioswrap.h
CommitLineData
3f4a0c5b
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: ioswrap.h
3// Purpose: includes the correct iostream headers for current compiler
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 03.02.99
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9// Licence: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
11
12#if wxUSE_IOSTREAMH
13 // N.B. BC++ doesn't have istream.h, ostream.h
14# include <iostream.h>
15#else
16# include <iostream>
17# if defined(__VISUALC__) || defined(__MWERKS__)
18 using namespace std;
19# endif
20#endif