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
#include <istream>
00036
#include <iomanip>
00037
00038
namespace std
00039 {
00040
00041
template class basic_istream<char>;
00042
template istream&
ws(istream&);
00043
template istream&
operator>>(istream&,
char&);
00044
template istream&
operator>>(istream&,
unsigned char&);
00045
template istream&
operator>>(istream&,
signed char&);
00046
template istream&
operator>>(istream&,
char*);
00047
template istream&
operator>>(istream&,
unsigned char*);
00048
template istream&
operator>>(istream&,
signed char*);
00049
00050
template istream&
operator>>(istream&, _Setfill<char>);
00051
template istream&
operator>>(istream&, _Setiosflags);
00052
template istream&
operator>>(istream&, _Resetiosflags);
00053
template istream&
operator>>(istream&, _Setbase);
00054
template istream&
operator>>(istream&, _Setprecision);
00055
template istream&
operator>>(istream&, _Setw);
00056
00057
#ifdef _GLIBCXX_USE_WCHAR_T
00058
template class basic_istream<wchar_t>;
00059
template wistream&
ws(wistream&);
00060
template wistream&
operator>>(wistream&,
wchar_t&);
00061
template wistream&
operator>>(wistream&,
wchar_t*);
00062
00063
template wistream&
operator>>(wistream&, _Setfill<wchar_t>);
00064
template wistream&
operator>>(wistream&, _Setiosflags);
00065
template wistream&
operator>>(wistream&, _Resetiosflags);
00066
template wistream&
operator>>(wistream&, _Setbase);
00067
template wistream&
operator>>(wistream&, _Setprecision);
00068
template wistream&
operator>>(wistream&, _Setw);
00069
#endif
00070
}