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