1 // Locale support -*- C++ -*-
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 // 2006, 2007, 2009, 2010
5 // Free Software Foundation, Inc.
7 // This file is part of the GNU ISO C++ Library. This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 3, or (at your option)
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // Under Section 7 of GPL version 3, you are granted additional
19 // permissions described in the GCC Runtime Library Exception, version
20 // 3.1, as published by the Free Software Foundation.
22 // You should have received a copy of the GNU General Public License and
23 // a copy of the GCC Runtime Library Exception along with this program;
24 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 // <http://www.gnu.org/licenses/>.
27 /** @file bits/localefwd.h
28 * This is an internal header file, included by other library headers.
29 * Do not attempt to use it directly. @headername{locale}
33 // ISO C++ 14882: 22.1 Locales
37 #define _LOCALE_FWD_H 1
39 #pragma GCC system_header
41 #include <bits/c++config.h>
42 #include <bits/c++locale.h> // Defines __c_locale, config-specific include
43 #include <iosfwd> // For ostreambuf_iterator, istreambuf_iterator
46 _GLIBCXX_BEGIN_NAMESPACE(std
)
49 * @defgroup locales Locales
51 * Classes and functions for internationalization and localization.
57 template<typename _Facet
>
59 has_facet(const locale
&) throw();
61 template<typename _Facet
>
63 use_facet(const locale
&);
65 // 22.1.3 Convenience interfaces
66 template<typename _CharT
>
68 isspace(_CharT
, const locale
&);
70 template<typename _CharT
>
72 isprint(_CharT
, const locale
&);
74 template<typename _CharT
>
76 iscntrl(_CharT
, const locale
&);
78 template<typename _CharT
>
80 isupper(_CharT
, const locale
&);
82 template<typename _CharT
>
84 islower(_CharT
, const locale
&);
86 template<typename _CharT
>
88 isalpha(_CharT
, const locale
&);
90 template<typename _CharT
>
92 isdigit(_CharT
, const locale
&);
94 template<typename _CharT
>
96 ispunct(_CharT
, const locale
&);
98 template<typename _CharT
>
100 isxdigit(_CharT
, const locale
&);
102 template<typename _CharT
>
104 isalnum(_CharT
, const locale
&);
106 template<typename _CharT
>
108 isgraph(_CharT
, const locale
&);
110 template<typename _CharT
>
112 toupper(_CharT
, const locale
&);
114 template<typename _CharT
>
116 tolower(_CharT
, const locale
&);
118 // 22.2.1 and 22.2.1.3 ctype
120 template<typename _CharT
>
122 template<> class ctype
<char>;
123 #ifdef _GLIBCXX_USE_WCHAR_T
124 template<> class ctype
<wchar_t>;
126 template<typename _CharT
>
128 // NB: Specialized for char and wchar_t in locale_facets.h.
131 template<typename _InternT
, typename _ExternT
, typename _StateT
>
133 template<> class codecvt
<char, char, mbstate_t>;
134 #ifdef _GLIBCXX_USE_WCHAR_T
135 template<> class codecvt
<wchar_t, char, mbstate_t>;
137 template<typename _InternT
, typename _ExternT
, typename _StateT
>
138 class codecvt_byname
;
140 // 22.2.2 and 22.2.3 numeric
141 _GLIBCXX_BEGIN_LDBL_NAMESPACE
142 template<typename _CharT
, typename _InIter
= istreambuf_iterator
<_CharT
> >
144 template<typename _CharT
, typename _OutIter
= ostreambuf_iterator
<_CharT
> >
146 _GLIBCXX_END_LDBL_NAMESPACE
147 template<typename _CharT
> class numpunct
;
148 template<typename _CharT
> class numpunct_byname
;
151 template<typename _CharT
>
153 template<typename _CharT
> class
156 // 22.2.5 date and time
158 template<typename _CharT
, typename _InIter
= istreambuf_iterator
<_CharT
> >
160 template<typename _CharT
, typename _InIter
= istreambuf_iterator
<_CharT
> >
161 class time_get_byname
;
162 template<typename _CharT
, typename _OutIter
= ostreambuf_iterator
<_CharT
> >
164 template<typename _CharT
, typename _OutIter
= ostreambuf_iterator
<_CharT
> >
165 class time_put_byname
;
169 _GLIBCXX_BEGIN_LDBL_NAMESPACE
170 template<typename _CharT
, typename _InIter
= istreambuf_iterator
<_CharT
> >
172 template<typename _CharT
, typename _OutIter
= ostreambuf_iterator
<_CharT
> >
174 _GLIBCXX_END_LDBL_NAMESPACE
175 template<typename _CharT
, bool _Intl
= false>
177 template<typename _CharT
, bool _Intl
= false>
178 class moneypunct_byname
;
180 // 22.2.7 message retrieval
182 template<typename _CharT
>
184 template<typename _CharT
>
185 class messages_byname
;
187 _GLIBCXX_END_NAMESPACE