os/ossrv/stdcpp/src/locale_nonclassic.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/stdcpp/src/locale_nonclassic.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,59 @@
     1.4 +/*
     1.5 + * Copyright (c) 1999
     1.6 + * Silicon Graphics Computer Systems, Inc.
     1.7 + *
     1.8 + * Copyright (c) 1999 
     1.9 + * Boris Fomitchev
    1.10 + *
    1.11 + * This material is provided "as is", with absolutely no warranty expressed
    1.12 + * or implied. Any use is at your own risk.
    1.13 + *
    1.14 + * Permission to use or copy this software for any purpose is hereby granted 
    1.15 + * without fee, provided the above notices are retained on all copies.
    1.16 + * Permission to modify the code and to distribute modified code is granted,
    1.17 + * provided the above notices are retained, and a notice that the code was
    1.18 + * modified is included with the above copyright notice.
    1.19 + *
    1.20 + */ 
    1.21 +
    1.22 +# ifndef LOCALE_nonclassic_H
    1.23 +#  define  LOCALE_nonclassic_H
    1.24 +
    1.25 +# include "locale_impl.h"
    1.26 +
    1.27 +_STLP_BEGIN_NAMESPACE
    1.28 +
    1.29 +class _STLP_CLASS_DECLSPEC _Locale : public _Locale_impl, public _Refcount_Base
    1.30 +{
    1.31 +public:
    1.32 +  _Locale(size_t n, const char* s) : _Locale_impl(s), _Refcount_Base(1), 
    1.33 +    facets_vec(n, (void*)0 ) { facets = (locale::facet**)&facets_vec[0]; _M_size = n; }
    1.34 +  _Locale(const _Locale_impl&);
    1.35 +  ~_Locale();
    1.36 +
    1.37 +  virtual void incr() { this->_M_incr(); }
    1.38 +  virtual void decr() { this->_M_decr(); if (!this->_M_ref_count) delete this;}
    1.39 +
    1.40 +  void remove(size_t index);
    1.41 +  locale::facet* insert(locale::facet*, size_t index, bool do_incr);
    1.42 +  void insert(_Locale_impl* from, const locale::id& n);
    1.43 +
    1.44 +// Helper functions for byname construction of locales.
    1.45 +  void insert_ctype_facets(const char* name);
    1.46 +  void insert_numeric_facets(const char* name);
    1.47 +  void insert_time_facets(const char* name);
    1.48 +  void insert_collate_facets(const char* name);
    1.49 +  void insert_monetary_facets(const char* name);
    1.50 +  void insert_messages_facets(const char* name);
    1.51 +  
    1.52 +  vector<void*> facets_vec;
    1.53 +
    1.54 +  static void _STLP_CALL _M_throw_bad_cast();
    1.55 +
    1.56 +private:
    1.57 +  void operator=(const _Locale_impl&);
    1.58 +};
    1.59 +
    1.60 +_STLP_END_NAMESPACE
    1.61 +
    1.62 +#endif