00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
#ifndef _CPP_IOSFWD
00041
#define _CPP_IOSFWD 1
00042
00043
#pragma GCC system_header
00044
00045
#include <bits/c++config.h>
00046
#include <bits/c++locale.h>
00047
#include <cctype>
00048
#include <bits/stringfwd.h>
00049
#include <bits/fpos.h>
00050
#include <bits/functexcept.h>
00051
00052
namespace std
00053 {
00054
template<
typename _CharT,
typename _Traits =
char_traits<_CharT> >
00055
class basic_ios;
00056
00057
template<
typename _CharT,
typename _Traits =
char_traits<_CharT> >
00058
class basic_streambuf;
00059
00060
template<
typename _CharT,
typename _Traits =
char_traits<_CharT> >
00061
class basic_istream;
00062
00063
template<
typename _CharT,
typename _Traits =
char_traits<_CharT> >
00064
class basic_ostream;
00065
00066
template<
typename _CharT,
typename _Traits =
char_traits<_CharT> >
00067
class basic_iostream;
00068
00069
template<
typename _CharT,
typename _Traits =
char_traits<_CharT>,
00070
typename _Alloc = allocator<_CharT> >
00071
class basic_stringbuf;
00072
00073
template<
typename _CharT,
typename _Traits =
char_traits<_CharT>,
00074
typename _Alloc = allocator<_CharT> >
00075
class basic_istringstream;
00076
00077
template<
typename _CharT,
typename _Traits =
char_traits<_CharT>,
00078
typename _Alloc = allocator<_CharT> >
00079
class basic_ostringstream;
00080
00081
template<
typename _CharT,
typename _Traits =
char_traits<_CharT>,
00082
typename _Alloc = allocator<_CharT> >
00083
class basic_stringstream;
00084
00085
template<
typename _CharT,
typename _Traits =
char_traits<_CharT> >
00086
class basic_filebuf;
00087
00088
template<
typename _CharT,
typename _Traits =
char_traits<_CharT> >
00089
class basic_ifstream;
00090
00091
template<
typename _CharT,
typename _Traits =
char_traits<_CharT> >
00092
class basic_ofstream;
00093
00094
template<
typename _CharT,
typename _Traits =
char_traits<_CharT> >
00095
class basic_fstream;
00096
00097
template<
typename _CharT,
typename _Traits =
char_traits<_CharT> >
00098
class istreambuf_iterator;
00099
00100
template<
typename _CharT,
typename _Traits =
char_traits<_CharT> >
00101
class ostreambuf_iterator;
00102
00103
#ifdef _GLIBCPP_RESOLVE_LIB_DEFECTS
00104
00105
class ios_base;
00106
#endif
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136 typedef basic_ios<char> ios;
00137 typedef basic_streambuf<char> streambuf;
00138 typedef basic_istream<char> istream;
00139 typedef basic_ostream<char> ostream;
00140 typedef basic_iostream<char> iostream;
00141 typedef basic_stringbuf<char> stringbuf;
00142 typedef basic_istringstream<char> istringstream;
00143 typedef basic_ostringstream<char> ostringstream;
00144 typedef basic_stringstream<char> stringstream;
00145 typedef basic_filebuf<char> filebuf;
00146 typedef basic_ifstream<char> ifstream;
00147 typedef basic_ofstream<char> ofstream;
00148 typedef basic_fstream<char> fstream;
00149
00150
#ifdef _GLIBCPP_USE_WCHAR_T
00151
typedef basic_ios<wchar_t> wios;
00152
typedef basic_streambuf<wchar_t> wstreambuf;
00153
typedef basic_istream<wchar_t> wistream;
00154
typedef basic_ostream<wchar_t> wostream;
00155
typedef basic_iostream<wchar_t> wiostream;
00156
typedef basic_stringbuf<wchar_t> wstringbuf;
00157
typedef basic_istringstream<wchar_t> wistringstream;
00158
typedef basic_ostringstream<wchar_t> wostringstream;
00159
typedef basic_stringstream<wchar_t> wstringstream;
00160
typedef basic_filebuf<wchar_t> wfilebuf;
00161
typedef basic_ifstream<wchar_t> wifstream;
00162
typedef basic_ofstream<wchar_t> wofstream;
00163
typedef basic_fstream<wchar_t> wfstream;
00164
#endif
00165
00166 }
00167
00168
#endif