]> git.saurik.com Git - wxWidgets.git/blob - include/wx/iosfwrap.h
added iosfwrap.h (wrapper for <iosfwd>)
[wxWidgets.git] / include / wx / iosfwrap.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/iosfwrap.h
3 // Purpose: includes the correct stream-related forward declarations
4 // Author: Jan van Dijk
5 // Modified by:
6 // Created: 18.12.2002
7 // RCS-ID: $Id$
8 // Copyright: (c) 2002 Jan van Dijk <jan@etpmod.phys.tue.nl>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #if wxUSE_STD_IOSTREAM
13
14 #if wxUSE_IOSTREAMH
15 // There is no pre-ANSI iosfwd header (?). We include the full decarations.
16 # include <iostream.h>
17 #else
18 # include <iosfwd>
19 #endif
20
21 #endif
22 // wxUSE_STD_IOSTREAM
23