]> gcc.gnu.org Git - gcc.git/blob - libstdc++-v3/src/locale-inst.cc
time_members_gnu.h (__timepunct::_M_get_helper): Add.
[gcc.git] / libstdc++-v3 / src / locale-inst.cc
1 // Locale support -*- C++ -*-
2
3 // Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
20
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction. Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License. This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
29
30 //
31 // ISO C++ 14882: 22.1 Locales
32 //
33
34 #include <bits/std_clocale.h>
35 #include <bits/std_cstring.h>
36 #include <bits/std_cassert.h>
37 #include <bits/std_limits.h>
38 #include <exception>
39 #include <bits/std_stdexcept.h>
40 #include <bits/std_locale.h>
41 #include <bits/locale_facets.tcc>
42 #include <bits/std_istream.h>
43 #include <bits/std_ostream.h>
44
45 namespace std
46 {
47 typedef ostreambuf_iterator<char, char_traits<char> > obuf_iterator;
48 typedef istreambuf_iterator<char, char_traits<char> > ibuf_iterator;
49 typedef ostreambuf_iterator<wchar_t, char_traits<wchar_t> > wobuf_iterator;
50 typedef istreambuf_iterator<wchar_t, char_traits<wchar_t> > wibuf_iterator;
51
52 // moneypunct, money_get, and money_put
53 template class moneypunct<char, false>;
54 template class moneypunct<char, true>;
55 template class moneypunct_byname<char, false>;
56 template class moneypunct_byname<char, true>;
57 template class money_get<char, ibuf_iterator>;
58 template class money_put<char, obuf_iterator>;
59 template class _Format_cache<char>;
60
61 #ifdef _GLIBCPP_USE_WCHAR_T
62 template class moneypunct<wchar_t, false>;
63 template class moneypunct<wchar_t, true>;
64 template class moneypunct_byname<wchar_t, false>;
65 template class moneypunct_byname<wchar_t, true>;
66 template class money_get<wchar_t, wibuf_iterator>;
67 template class money_put<wchar_t, wobuf_iterator>;
68 template class _Format_cache<wchar_t>;
69 #endif
70
71 // numpunct, numpunct_byname, num_get, and num_put
72 template class numpunct<char>;
73 template class numpunct_byname<char>;
74 template class num_get<char, ibuf_iterator>;
75 template class num_put<char, obuf_iterator>;
76 #ifdef _GLIBCPP_USE_WCHAR_T
77 template class numpunct<wchar_t>;
78 template class numpunct_byname<wchar_t>;
79 template class num_get<wchar_t, wibuf_iterator>;
80 template class num_put<wchar_t, wobuf_iterator>;
81 #endif
82
83 // time_get and time_put
84 template class __timepunct<char>;
85 template class time_put<char, obuf_iterator>;
86 template class time_put_byname<char, obuf_iterator>;
87 template class time_get<char, ibuf_iterator>;
88 template class time_get_byname<char, ibuf_iterator>;
89
90 #ifdef _GLIBCPP_USE_WCHAR_T
91 template class __timepunct<wchar_t>;
92 template class time_put<wchar_t, wobuf_iterator>;
93 template class time_put_byname<wchar_t, wobuf_iterator>;
94 template class time_get<wchar_t, wibuf_iterator>;
95 template class time_get_byname<wchar_t, wibuf_iterator>;
96 #endif
97
98 // messages
99 template class messages<char>;
100 template class messages_byname<char>;
101 #ifdef _GLIBCPP_USE_WCHAR_T
102 template class messages<wchar_t>;
103 template class messages_byname<wchar_t>;
104 #endif
105
106 // ctype
107 template class __ctype_abstract_base<char>;
108 template class ctype_byname<char>;
109 #ifdef _GLIBCPP_USE_WCHAR_T
110 template class __ctype_abstract_base<wchar_t>;
111 template class ctype_byname<wchar_t>;
112 #endif
113
114 // codecvt
115 template class __codecvt_abstract_base<char, char, mbstate_t>;
116 template class __codecvt_abstract_base<wchar_t, char, mbstate_t>;
117 template class codecvt_byname<char, char, mbstate_t>;
118 #ifdef _GLIBCPP_USE_WCHAR_T
119 template class codecvt_byname<wchar_t, char, mbstate_t>;
120 #endif
121
122 // collate
123 template class collate<char>;
124 template class collate_byname<char>;
125 #ifdef _GLIBCPP_USE_WCHAR_T
126 template class collate<wchar_t>;
127 template class collate_byname<wchar_t>;
128 #endif
129
130 // use_facet
131 template
132 const numpunct<char>&
133 use_facet<numpunct<char> >(const locale&);
134
135 template
136 const num_put<char, obuf_iterator >&
137 use_facet<num_put<char, obuf_iterator> >(const locale&);
138
139 template
140 const num_get<char, ibuf_iterator >&
141 use_facet<num_get<char, ibuf_iterator> >(const locale&);
142
143 template
144 const codecvt<char, char, mbstate_t>&
145 use_facet<codecvt<char, char, mbstate_t> >(const locale&);
146
147 template
148 const collate<char>&
149 use_facet<collate<char> >(const locale&);
150
151 template
152 const moneypunct<char, true>&
153 use_facet<moneypunct<char, true> >(const locale&);
154
155 template
156 const moneypunct<char, false>&
157 use_facet<moneypunct<char, false> >(const locale&);
158
159 template
160 const __timepunct<char>&
161 use_facet<__timepunct<char> >(const locale&);
162
163 #ifdef _GLIBCPP_USE_WCHAR_T
164 template
165 const numpunct<wchar_t>&
166 use_facet<numpunct<wchar_t> >(const locale&);
167
168 template
169 const num_put<wchar_t, wobuf_iterator>&
170 use_facet<num_put<wchar_t, wobuf_iterator> >(const locale&);
171
172 template
173 const num_get<wchar_t, wibuf_iterator>&
174 use_facet<num_get<wchar_t, wibuf_iterator> >(const locale&);
175
176 template
177 const codecvt<wchar_t, char, mbstate_t>&
178 use_facet<codecvt<wchar_t, char, mbstate_t> >(locale const&);
179
180 template
181 const collate<wchar_t>&
182 use_facet<collate<wchar_t> >(const locale&);
183
184 template
185 const moneypunct<wchar_t, true>&
186 use_facet<moneypunct<wchar_t, true> >(const locale&);
187
188 template
189 const moneypunct<wchar_t, false>&
190 use_facet<moneypunct<wchar_t, false> >(const locale&);
191
192 template
193 const __timepunct<wchar_t>&
194 use_facet<__timepunct<wchar_t> >(const locale&);
195 #endif
196
197 // has_facet
198 template
199 bool
200 has_facet<numpunct<char> >(const locale&);
201 template
202 bool
203 has_facet<num_put<char> >(const locale&);
204 template
205 bool
206 has_facet<num_get<char> >(const locale&);
207 template
208 bool
209 has_facet<ctype<char> >(const locale&);
210
211 #ifdef _GLIBCPP_USE_WCHAR_T
212 template
213 bool
214 has_facet<numpunct<wchar_t> >(const locale&);
215 template
216 bool
217 has_facet<num_put<wchar_t> >(const locale&);
218 template
219 bool
220 has_facet<num_get<wchar_t> >(const locale&);
221 template
222 bool
223 has_facet<ctype<wchar_t> >(const locale&);
224 #endif
225
226 //
227 // iterator
228 //
229 typedef vector<locale::facet*> vec_pfacet;
230 template
231 void
232 vec_pfacet::
233 insert(vec_pfacet::iterator, vec_pfacet::size_type,
234 const vec_pfacet::value_type&);
235 template
236 void
237 vec_pfacet::
238 _M_fill_insert(vec_pfacet::iterator, vec_pfacet::size_type,
239 const vec_pfacet::value_type&);
240
241
242 //
243 // locale
244 //
245 typedef istreambuf_iterator<char, char_traits<char> > istreambuf_iter;
246 typedef ostreambuf_iterator<char, char_traits<char> > ostreambuf_iter;
247
248 #ifdef _GLIBCPP_USE_WCHAR_T
249 typedef istreambuf_iterator<wchar_t,char_traits<wchar_t> > wistreambuf_iter;
250 typedef ostreambuf_iterator<wchar_t,char_traits<wchar_t> > wostreambuf_iter;
251 #endif
252
253 template
254 bool
255 locale::operator()(const string&, const string&) const;
256
257 template
258 ostreambuf_iter
259 __pad<char, ostreambuf_iter, output_iterator_tag>
260 (ostreambuf_iter, char, int, output_iterator_tag);
261
262 template
263 ostreambuf_iter
264 __pad_numeric<char, ostreambuf_iter>
265 (ostreambuf_iter, ios_base::fmtflags, char, int, char const*, char const*,
266 char const*);
267
268 template
269 char*
270 __group_digits<char>(char*, char, char const*, char const*,
271 char const*, char const*);
272
273 template
274 bool
275 __verify_grouping<char>(const basic_string<char>&, basic_string<char>&);
276
277 template
278 ostreambuf_iter
279 __output_integer<char, ostreambuf_iter, unsigned long>
280 (ostreambuf_iter, ios_base &, char, bool, unsigned long);
281
282 #ifdef _GLIBCPP_USE_LONG_LONG
283 template
284 ostreambuf_iter
285 __output_integer<char, ostreambuf_iter, unsigned long long>
286 (ostreambuf_iter, ios_base &, char, bool, unsigned long long);
287 #endif
288
289 #ifdef _GLIBCPP_USE_WCHAR_T
290 template
291 bool
292 locale::operator()(const wstring&, const wstring&) const;
293
294 typedef ostreambuf_iterator<wchar_t> wostreambuf_iter;
295
296 template
297 wostreambuf_iter
298 __pad<wchar_t, wostreambuf_iter, output_iterator_tag>
299 (wostreambuf_iter, wchar_t, int, output_iterator_tag);
300
301 template
302 wostreambuf_iter
303 __pad_numeric<wchar_t, wostreambuf_iter>
304 (wostreambuf_iter, ios_base::fmtflags, wchar_t __fill, int, wchar_t const*,
305 wchar_t const*, wchar_t const*);
306
307 template
308 wchar_t*
309 __group_digits<wchar_t>(wchar_t*, wchar_t, char const*, char const*,
310 wchar_t const*, wchar_t const*);
311 template
312 bool
313 __verify_grouping<wchar_t>(const basic_string<wchar_t>&,
314 basic_string<wchar_t>&);
315
316 template
317 wostreambuf_iter
318 __output_integer<wchar_t, wostreambuf_iter, unsigned long>
319 (wostreambuf_iter, ios_base &, wchar_t, bool, unsigned long);
320
321 #ifdef _GLIBCPP_USE_LONG_LONG
322 template
323 wostreambuf_iter
324 __output_integer<wchar_t, wostreambuf_iter, unsigned long long>
325 (wostreambuf_iter, ios_base &, wchar_t, bool, unsigned long long);
326 #endif
327 #endif // _GLIBCPP_USE_WCHAR_T
328
329 template
330 locale::facet**
331 fill_n<locale::facet**, size_t, locale::facet*>
332 (locale::facet**, size_t, locale::facet* const&);
333
334 template
335 __normal_iterator<locale::facet**, vector<locale::facet*> >
336 fill_n(__normal_iterator<locale::facet**, vector<locale::facet*> >,
337 size_t, locale::facet* const&);
338
339 template
340 void
341 fill(__normal_iterator<locale::facet**, vector<locale::facet*> >,
342 __normal_iterator<locale::facet**, vector<locale::facet*> >,
343 locale::facet* const&);
344 } // namespace std
345
This page took 0.059152 seconds and 6 git commands to generate.