179b008f3e
* iosfwd: New header. * Makefile.in (HEADERS): Add it. Sun Dec 7 02:32:20 1997 Gregory L. Galloway (gregg@eoeml.gtri.gatech.edu) * Makefile.in (HEADERS): Modified list of headers to install to include all of SGI STL headers especially hash_set and hash_map, and added ANSI C++ style wrappers for fstream, iomanip, iostream, and strstream. * fstream, iomanip, iostream, strstream: New forwarding headers added. From-SVN: r16991
16 lines
279 B
C++
16 lines
279 B
C++
// -*- 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
|