From: No Author Date: Sun, 7 Dec 1997 10:33:36 +0000 (+0000) Subject: This commit was manufactured by cvs2svn to create branch X-Git-Tag: prereleases/egcs-1.0.1-prerelease~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f7526015139cf1c7e69520eb80cff379f92785d2;p=thirdparty%2Fgcc.git This commit was manufactured by cvs2svn to create branch 'egcs_1_00_branch'. From-SVN: r16992 --- diff --git a/libstdc++/fstream b/libstdc++/fstream new file mode 100644 index 000000000000..2c35ca92b039 --- /dev/null +++ b/libstdc++/fstream @@ -0,0 +1,7 @@ +// -*- C++ -*- forwarding header. +// This file is part of the GNU ANSI C++ Library. + +#ifndef __FSTREAM__ +#define __FSTREAM__ +#include +#endif diff --git a/libstdc++/iomanip b/libstdc++/iomanip new file mode 100644 index 000000000000..817948579ce7 --- /dev/null +++ b/libstdc++/iomanip @@ -0,0 +1,7 @@ +// -*- C++ -*- forwarding header. +// This file is part of the GNU ANSI C++ Library. + +#ifndef __IOMANIP__ +#define __IOMANIP__ +#include +#endif diff --git a/libstdc++/iosfwd b/libstdc++/iosfwd new file mode 100644 index 000000000000..8314cf7b73f6 --- /dev/null +++ b/libstdc++/iosfwd @@ -0,0 +1,15 @@ +// -*- C++ -*- I/O forward declaration header. +// This file is part of the GNU ANSI C++ Library. + +#ifndef __IOSFWD__ +#define __IOSFWD__ +class ios; +class streambuf; +class istream; +class ostream; +class iostream; +class filebuf; +class ifstream; +class ofstream; +class fstream; +#endif diff --git a/libstdc++/iostream b/libstdc++/iostream new file mode 100644 index 000000000000..7ecba6e8dafc --- /dev/null +++ b/libstdc++/iostream @@ -0,0 +1,7 @@ +// -*- C++ -*- forwarding header. +// This file is part of the GNU ANSI C++ Library. + +#ifndef __IOSTREAM__ +#define __IOSTREAM__ +#include +#endif diff --git a/libstdc++/strstream b/libstdc++/strstream new file mode 100644 index 000000000000..ee360e0b7e43 --- /dev/null +++ b/libstdc++/strstream @@ -0,0 +1,7 @@ +// -*- C++ -*- forwarding header. +// This file is part of the GNU ANSI C++ Library. + +#ifndef __STRSTREAM__ +#define __STRSTREAM__ +#include +#endif