sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1999
|
sl@0
|
3 |
* Silicon Graphics Computer Systems, Inc.
|
sl@0
|
4 |
*
|
sl@0
|
5 |
* Copyright (c) 1999
|
sl@0
|
6 |
* Boris Fomitchev
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* This material is provided "as is", with absolutely no warranty expressed
|
sl@0
|
9 |
* or implied. Any use is at your own risk.
|
sl@0
|
10 |
*
|
sl@0
|
11 |
* Permission to use or copy this software for any purpose is hereby granted
|
sl@0
|
12 |
* without fee, provided the above notices are retained on all copies.
|
sl@0
|
13 |
* Permission to modify the code and to distribute modified code is granted,
|
sl@0
|
14 |
* provided the above notices are retained, and a notice that the code was
|
sl@0
|
15 |
* modified is included with the above copyright notice.
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
# ifndef LOCALE_nonclassic_H
|
sl@0
|
20 |
# define LOCALE_nonclassic_H
|
sl@0
|
21 |
|
sl@0
|
22 |
# include "locale_impl.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
_STLP_BEGIN_NAMESPACE
|
sl@0
|
25 |
|
sl@0
|
26 |
class _STLP_CLASS_DECLSPEC _Locale : public _Locale_impl, public _Refcount_Base
|
sl@0
|
27 |
{
|
sl@0
|
28 |
public:
|
sl@0
|
29 |
_Locale(size_t n, const char* s) : _Locale_impl(s), _Refcount_Base(1),
|
sl@0
|
30 |
facets_vec(n, (void*)0 ) { facets = (locale::facet**)&facets_vec[0]; _M_size = n; }
|
sl@0
|
31 |
_Locale(const _Locale_impl&);
|
sl@0
|
32 |
~_Locale();
|
sl@0
|
33 |
|
sl@0
|
34 |
virtual void incr() { this->_M_incr(); }
|
sl@0
|
35 |
virtual void decr() { this->_M_decr(); if (!this->_M_ref_count) delete this;}
|
sl@0
|
36 |
|
sl@0
|
37 |
void remove(size_t index);
|
sl@0
|
38 |
locale::facet* insert(locale::facet*, size_t index, bool do_incr);
|
sl@0
|
39 |
void insert(_Locale_impl* from, const locale::id& n);
|
sl@0
|
40 |
|
sl@0
|
41 |
// Helper functions for byname construction of locales.
|
sl@0
|
42 |
void insert_ctype_facets(const char* name);
|
sl@0
|
43 |
void insert_numeric_facets(const char* name);
|
sl@0
|
44 |
void insert_time_facets(const char* name);
|
sl@0
|
45 |
void insert_collate_facets(const char* name);
|
sl@0
|
46 |
void insert_monetary_facets(const char* name);
|
sl@0
|
47 |
void insert_messages_facets(const char* name);
|
sl@0
|
48 |
|
sl@0
|
49 |
vector<void*> facets_vec;
|
sl@0
|
50 |
|
sl@0
|
51 |
static void _STLP_CALL _M_throw_bad_cast();
|
sl@0
|
52 |
|
sl@0
|
53 |
private:
|
sl@0
|
54 |
void operator=(const _Locale_impl&);
|
sl@0
|
55 |
};
|
sl@0
|
56 |
|
sl@0
|
57 |
_STLP_END_NAMESPACE
|
sl@0
|
58 |
|
sl@0
|
59 |
#endif
|