Update contrib.
2 * © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
5 * Silicon Graphics Computer Systems, Inc.
10 * This material is provided "as is", with absolutely no warranty expressed
11 * or implied. Any use is at your own risk.
13 * Permission to use or copy this software for any purpose is hereby granted
14 * without fee, provided the above notices are retained on all copies.
15 * Permission to modify the code and to distribute modified code is granted,
16 * provided the above notices are retained, and a notice that the code was
17 * modified is included with the above copyright notice.
21 # ifndef LOCALE_IMPL_H
22 # define LOCALE_IMPL_H
24 #include <clocale> // C locale header file.
27 #include <stl/_locale.h>
32 //----------------------------------------------------------------------
34 // This is the base class which implements access only and is supposed to
35 // be used for classic locale only
36 class _STLP_CLASS_DECLSPEC _Locale_impl
39 _Locale_impl(const char* s);
40 // _Locale_impl(const _Locale_impl&);
41 virtual ~_Locale_impl();
46 size_t size() const { return _M_size; }
48 static _Locale_impl* make_classic_locale();
50 locale::facet** facets;
53 basic_string<char, char_traits<char>, allocator<char> > name;
55 static void _STLP_CALL _M_throw_bad_cast();
58 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
59 static _Locale_impl*& get_locale_impl_S_global_impl();
60 // static locale _S_classic;
61 static _STLP_STATIC_MUTEX& get_locale_impl_S_global_locale_lock();
63 static _Locale_impl* _S_global_impl;
64 // static locale _S_classic;
65 static _STLP_STATIC_MUTEX _S_global_locale_lock;
68 void operator=(const _Locale_impl&);
71 inline _Locale_impl* _STLP_CALL _S_copy_impl(_Locale_impl* I) {
72 _STLP_ASSERT( I != 0 );