localefwd.h
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
00036
00037
00038
00039
00040
00041 #ifndef _LOCALE_FWD_H
00042 #define _LOCALE_FWD_H 1
00043
00044 #pragma GCC system_header
00045
00046 #include <bits/c++config.h>
00047 #include <bits/c++locale.h>
00048 #include <iosfwd>
00049 #include <cctype>
00050
00051 _GLIBCXX_BEGIN_NAMESPACE(std)
00052
00053
00054 class locale;
00055
00056 template<typename _Facet>
00057 bool
00058 has_facet(const locale&) throw();
00059
00060 template<typename _Facet>
00061 const _Facet&
00062 use_facet(const locale&);
00063
00064
00065 template<typename _CharT>
00066 bool
00067 isspace(_CharT, const locale&);
00068
00069 template<typename _CharT>
00070 bool
00071 isprint(_CharT, const locale&);
00072
00073 template<typename _CharT>
00074 bool
00075 iscntrl(_CharT, const locale&);
00076
00077 template<typename _CharT>
00078 bool
00079 isupper(_CharT, const locale&);
00080
00081 template<typename _CharT>
00082 bool
00083 islower(_CharT, const locale&);
00084
00085 template<typename _CharT>
00086 bool
00087 isalpha(_CharT, const locale&);
00088
00089 template<typename _CharT>
00090 bool
00091 isdigit(_CharT, const locale&);
00092
00093 template<typename _CharT>
00094 bool
00095 ispunct(_CharT, const locale&);
00096
00097 template<typename _CharT>
00098 bool
00099 isxdigit(_CharT, const locale&);
00100
00101 template<typename _CharT>
00102 bool
00103 isalnum(_CharT, const locale&);
00104
00105 template<typename _CharT>
00106 bool
00107 isgraph(_CharT, const locale&);
00108
00109 template<typename _CharT>
00110 _CharT
00111 toupper(_CharT, const locale&);
00112
00113 template<typename _CharT>
00114 _CharT
00115 tolower(_CharT, const locale&);
00116
00117
00118 class ctype_base;
00119 template<typename _CharT>
00120 class ctype;
00121 template<> class ctype<char>;
00122 #ifdef _GLIBCXX_USE_WCHAR_T
00123 template<> class ctype<wchar_t>;
00124 #endif
00125 template<typename _CharT>
00126 class ctype_byname;
00127
00128
00129 class codecvt_base;
00130 template<typename _InternT, typename _ExternT, typename _StateT>
00131 class codecvt;
00132 template<> class codecvt<char, char, mbstate_t>;
00133 #ifdef _GLIBCXX_USE_WCHAR_T
00134 template<> class codecvt<wchar_t, char, mbstate_t>;
00135 #endif
00136 template<typename _InternT, typename _ExternT, typename _StateT>
00137 class codecvt_byname;
00138
00139
00140 _GLIBCXX_BEGIN_LDBL_NAMESPACE
00141 template<typename _CharT, typename _InIter = istreambuf_iterator<_CharT> >
00142 class num_get;
00143 template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> >
00144 class num_put;
00145 _GLIBCXX_END_LDBL_NAMESPACE
00146 template<typename _CharT> class numpunct;
00147 template<typename _CharT> class numpunct_byname;
00148
00149
00150 template<typename _CharT>
00151 class collate;
00152 template<typename _CharT> class
00153 collate_byname;
00154
00155
00156 class time_base;
00157 template<typename _CharT, typename _InIter = istreambuf_iterator<_CharT> >
00158 class time_get;
00159 template<typename _CharT, typename _InIter = istreambuf_iterator<_CharT> >
00160 class time_get_byname;
00161 template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> >
00162 class time_put;
00163 template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> >
00164 class time_put_byname;
00165
00166
00167 class money_base;
00168 _GLIBCXX_BEGIN_LDBL_NAMESPACE
00169 template<typename _CharT, typename _InIter = istreambuf_iterator<_CharT> >
00170 class money_get;
00171 template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> >
00172 class money_put;
00173 _GLIBCXX_END_LDBL_NAMESPACE
00174 template<typename _CharT, bool _Intl = false>
00175 class moneypunct;
00176 template<typename _CharT, bool _Intl = false>
00177 class moneypunct_byname;
00178
00179
00180 class messages_base;
00181 template<typename _CharT>
00182 class messages;
00183 template<typename _CharT>
00184 class messages_byname;
00185
00186 _GLIBCXX_END_NAMESPACE
00187
00188 #endif