* include/backward/fstream.h: Define filebuf and wfilebuf.

From-SVN: r41048
This commit is contained in:
Andreas Schwab 2001-04-03 08:49:38 +00:00 committed by Andreas Schwab
parent ef14c25902
commit 896b336b8c
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-04-03 Andreas Schwab <schwab@suse.de>
* include/backward/fstream.h: Define filebuf and wfilebuf.
2001-04-02 Phil Edwards <pme@sources.redhat.com>
New concept checking implementation.

View File

@ -30,11 +30,13 @@
#include <bits/std_fstream.h>
using std::filebuf;
using std::ifstream;
using std::ofstream;
using std::fstream;
#ifdef _GLIBCPP_USE_WCHAR_T
using std::wfilebuf;
using std::wifstream;
using std::wofstream;
using std::wfstream;