os/ossrv/stdcpp/src/numpunct.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
 * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
sl@0
     3
 *
sl@0
     4
 * Copyright (c) 1999
sl@0
     5
 * Silicon Graphics Computer Systems, Inc.
sl@0
     6
 *
sl@0
     7
 * Copyright (c) 1999 
sl@0
     8
 * Boris Fomitchev
sl@0
     9
 *
sl@0
    10
 * This material is provided "as is", with absolutely no warranty expressed
sl@0
    11
 * or implied. Any use is at your own risk.
sl@0
    12
 *
sl@0
    13
 * Permission to use or copy this software for any purpose is hereby granted 
sl@0
    14
 * without fee, provided the above notices are retained on all copies.
sl@0
    15
 * Permission to modify the code and to distribute modified code is granted,
sl@0
    16
 * provided the above notices are retained, and a notice that the code was
sl@0
    17
 * modified is included with the above copyright notice.
sl@0
    18
 *
sl@0
    19
 */ 
sl@0
    20
# include "stlport_prefix.h"
sl@0
    21
# include <stl/_numpunct.h>
sl@0
    22
sl@0
    23
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
    24
#include "libstdcppwsd.h"
sl@0
    25
# endif
sl@0
    26
sl@0
    27
_STLP_BEGIN_NAMESPACE
sl@0
    28
sl@0
    29
//----------------------------------------------------------------------
sl@0
    30
// numpunct<char>
sl@0
    31
# if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
    32
_STLP_STATIC_MEMBER_EXP_DECLSPEC  string numpunct<char>::_M_truename("true");
sl@0
    33
_STLP_STATIC_MEMBER_EXP_DECLSPEC  string  numpunct<char>::_M_falsename("false");
sl@0
    34
_STLP_STATIC_MEMBER_EXP_DECLSPEC  string numpunct<char>::_M_grouping("");
sl@0
    35
# endif
sl@0
    36
sl@0
    37
_STLP_EXP_DECLSPEC char   numpunct<char>::do_decimal_point() const {return '.';}
sl@0
    38
_STLP_EXP_DECLSPEC char   numpunct<char>::do_thousands_sep() const { return ','; }
sl@0
    39
_STLP_EXP_DECLSPEC string numpunct<char>::do_grouping()  const { return string();}
sl@0
    40
sl@0
    41
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
    42
_STLP_EXP_DECLSPEC  string numpunct<char>::do_truename()  const { return GetNumPunct_M_truename();}
sl@0
    43
_STLP_EXP_DECLSPEC  string numpunct<char>::do_falsename() const { return GetNumPunct_M_falsename(); }
sl@0
    44
# else
sl@0
    45
string numpunct<char>::do_truename()  const { return _M_truename;}
sl@0
    46
string numpunct<char>::do_falsename() const { return _M_falsename; }
sl@0
    47
# endif
sl@0
    48
sl@0
    49
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
    50
void numpunct_name_init()
sl@0
    51
{	
sl@0
    52
	numpunct<char>::GetNumPunct_M_truename() = "true";	
sl@0
    53
	numpunct<char>::GetNumPunct_M_falsename() = "false";
sl@0
    54
# ifndef _STLP_NO_WCHAR_T	
sl@0
    55
	numpunct<wchar_t>::GetNumPunct_M_Wchar_truename() = L"true";
sl@0
    56
	numpunct<wchar_t>::GetNumPunct_M_Wchar_falsename() = L"false";
sl@0
    57
# endif	
sl@0
    58
}
sl@0
    59
# endif
sl@0
    60
sl@0
    61
sl@0
    62
# ifndef _STLP_NO_WCHAR_T
sl@0
    63
sl@0
    64
_STLP_EXP_DECLSPEC  wchar_t numpunct<wchar_t>::do_decimal_point() const { return L'.'; }
sl@0
    65
sl@0
    66
_STLP_EXP_DECLSPEC wchar_t numpunct<wchar_t>::do_thousands_sep() const
sl@0
    67
{
sl@0
    68
  return L',';
sl@0
    69
}
sl@0
    70
sl@0
    71
_STLP_EXP_DECLSPEC string numpunct<wchar_t>::do_grouping() const
sl@0
    72
{
sl@0
    73
  return string();
sl@0
    74
}
sl@0
    75
sl@0
    76
_STLP_EXP_DECLSPEC wstring numpunct<wchar_t>::do_truename() const
sl@0
    77
{
sl@0
    78
  return GetNumPunct_M_Wchar_truename();
sl@0
    79
}
sl@0
    80
 
sl@0
    81
_STLP_EXP_DECLSPEC wstring numpunct<wchar_t>::do_falsename() const
sl@0
    82
{
sl@0
    83
  return GetNumPunct_M_Wchar_falsename();
sl@0
    84
} 
sl@0
    85
sl@0
    86
# if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
    87
_STLP_STATIC_MEMBER_EXP_DECLSPEC  wstring numpunct<wchar_t>::_M_truename(L"true");
sl@0
    88
_STLP_STATIC_MEMBER_EXP_DECLSPEC  wstring numpunct<wchar_t>::_M_falsename(L"false");
sl@0
    89
_STLP_STATIC_MEMBER_EXP_DECLSPEC  string numpunct<wchar_t>::_M_grouping("");
sl@0
    90
#endif
sl@0
    91
sl@0
    92
# endif
sl@0
    93
sl@0
    94
#ifdef	__SYMBIAN32__
sl@0
    95
sl@0
    96
_Locale_numeric* __acquire_numeric(const char* name); 
sl@0
    97
void __release_numeric(_Locale_numeric* cat);
sl@0
    98
sl@0
    99
_STLP_EXP_DECLSPEC _Locale_numeric* __acquire_numericE(const char* name){return __acquire_numeric(name); }
sl@0
   100
_STLP_EXP_DECLSPEC void __release_numericE(_Locale_numeric* _M_numeric){ __release_numeric(_M_numeric);}
sl@0
   101
_STLP_EXP_DECLSPEC const char* _Locale_trueE(_Locale_numeric* _M_numeric){ return _Locale_true(_M_numeric);}
sl@0
   102
_STLP_EXP_DECLSPEC const char* _Locale_falseE(_Locale_numeric* _M_numeric){ return _Locale_false(_M_numeric); }
sl@0
   103
_STLP_EXP_DECLSPEC char _Locale_decimal_pointE(_Locale_numeric* _M_numeric){return _Locale_decimal_point(_M_numeric); }
sl@0
   104
_STLP_EXP_DECLSPEC char _Locale_thousands_sepE(_Locale_numeric* _M_numeric){return _Locale_thousands_sep(_M_numeric); }
sl@0
   105
_STLP_EXP_DECLSPEC const char*_Locale_groupingE(_Locale_numeric* _M_numeric){return _Locale_grouping(_M_numeric); }
sl@0
   106
sl@0
   107
sl@0
   108
#endif//__SYMBIAN32
sl@0
   109
_STLP_END_NAMESPACE
sl@0
   110
sl@0
   111
// Local Variables:
sl@0
   112
// mode:C++
sl@0
   113
// End:
sl@0
   114