Go to the documentation of this file.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 #ifndef _GLIBCXX_IOSFWD
00036 #define _GLIBCXX_IOSFWD 1
00037
00038 #pragma GCC system_header
00039
00040 #include <bits/c++config.h>
00041 #include <bits/stringfwd.h>
00042 #include <bits/postypes.h>
00043
00044 _GLIBCXX_BEGIN_NAMESPACE(std)
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074 class ios_base;
00075
00076 template<typename _CharT, typename _Traits = char_traits<_CharT> >
00077 class basic_ios;
00078
00079 template<typename _CharT, typename _Traits = char_traits<_CharT> >
00080 class basic_streambuf;
00081
00082 template<typename _CharT, typename _Traits = char_traits<_CharT> >
00083 class basic_istream;
00084
00085 template<typename _CharT, typename _Traits = char_traits<_CharT> >
00086 class basic_ostream;
00087
00088 template<typename _CharT, typename _Traits = char_traits<_CharT> >
00089 class basic_iostream;
00090
00091 template<typename _CharT, typename _Traits = char_traits<_CharT>,
00092 typename _Alloc = allocator<_CharT> >
00093 class basic_stringbuf;
00094
00095 template<typename _CharT, typename _Traits = char_traits<_CharT>,
00096 typename _Alloc = allocator<_CharT> >
00097 class basic_istringstream;
00098
00099 template<typename _CharT, typename _Traits = char_traits<_CharT>,
00100 typename _Alloc = allocator<_CharT> >
00101 class basic_ostringstream;
00102
00103 template<typename _CharT, typename _Traits = char_traits<_CharT>,
00104 typename _Alloc = allocator<_CharT> >
00105 class basic_stringstream;
00106
00107 template<typename _CharT, typename _Traits = char_traits<_CharT> >
00108 class basic_filebuf;
00109
00110 template<typename _CharT, typename _Traits = char_traits<_CharT> >
00111 class basic_ifstream;
00112
00113 template<typename _CharT, typename _Traits = char_traits<_CharT> >
00114 class basic_ofstream;
00115
00116 template<typename _CharT, typename _Traits = char_traits<_CharT> >
00117 class basic_fstream;
00118
00119 template<typename _CharT, typename _Traits = char_traits<_CharT> >
00120 class istreambuf_iterator;
00121
00122 template<typename _CharT, typename _Traits = char_traits<_CharT> >
00123 class ostreambuf_iterator;
00124
00125
00126
00127
00128 typedef basic_ios<char> ios;
00129 typedef basic_streambuf<char> streambuf;
00130 typedef basic_istream<char> istream;
00131 typedef basic_ostream<char> ostream;
00132 typedef basic_iostream<char> iostream;
00133 typedef basic_stringbuf<char> stringbuf;
00134 typedef basic_istringstream<char> istringstream;
00135 typedef basic_ostringstream<char> ostringstream;
00136 typedef basic_stringstream<char> stringstream;
00137 typedef basic_filebuf<char> filebuf;
00138 typedef basic_ifstream<char> ifstream;
00139 typedef basic_ofstream<char> ofstream;
00140 typedef basic_fstream<char> fstream;
00141
00142 #ifdef _GLIBCXX_USE_WCHAR_T
00143 typedef basic_ios<wchar_t> wios;
00144 typedef basic_streambuf<wchar_t> wstreambuf;
00145 typedef basic_istream<wchar_t> wistream;
00146 typedef basic_ostream<wchar_t> wostream;
00147 typedef basic_iostream<wchar_t> wiostream;
00148 typedef basic_stringbuf<wchar_t> wstringbuf;
00149 typedef basic_istringstream<wchar_t> wistringstream;
00150 typedef basic_ostringstream<wchar_t> wostringstream;
00151 typedef basic_stringstream<wchar_t> wstringstream;
00152 typedef basic_filebuf<wchar_t> wfilebuf;
00153 typedef basic_ifstream<wchar_t> wifstream;
00154 typedef basic_ofstream<wchar_t> wofstream;
00155 typedef basic_fstream<wchar_t> wfstream;
00156 #endif
00157
00158
00159 _GLIBCXX_END_NAMESPACE
00160
00161 #endif