michael@0: /* michael@0: * Copyright (c) 1999 michael@0: * Silicon Graphics Computer Systems, Inc. michael@0: * michael@0: * Copyright (c) 1999 michael@0: * Boris Fomitchev michael@0: * michael@0: * This material is provided "as is", with absolutely no warranty expressed michael@0: * or implied. Any use is at your own risk. michael@0: * michael@0: * Permission to use or copy this software for any purpose is hereby granted michael@0: * without fee, provided the above notices are retained on all copies. michael@0: * Permission to modify the code and to distribute modified code is granted, michael@0: * provided the above notices are retained, and a notice that the code was michael@0: * modified is included with the above copyright notice. michael@0: * michael@0: */ michael@0: #include "stlport_prefix.h" michael@0: michael@0: #include michael@0: michael@0: _STLP_BEGIN_NAMESPACE michael@0: michael@0: //---------------------------------------------------------------------- michael@0: // numpunct michael@0: char numpunct::do_decimal_point() const {return '.';} michael@0: char numpunct::do_thousands_sep() const { return ','; } michael@0: string numpunct::do_grouping() const { return string();} michael@0: string numpunct::do_truename() const { return "true";} michael@0: string numpunct::do_falsename() const { return "false"; } michael@0: numpunct::~numpunct() {} michael@0: michael@0: #if !defined (_STLP_NO_WCHAR_T) michael@0: wchar_t numpunct::do_decimal_point() const { return L'.'; } michael@0: wchar_t numpunct::do_thousands_sep() const { return L','; } michael@0: string numpunct::do_grouping() const { return string(); } michael@0: wstring numpunct::do_truename() const { return L"true"; } michael@0: wstring numpunct::do_falsename() const { return L"false"; } michael@0: numpunct::~numpunct() {} michael@0: #endif michael@0: michael@0: _STLP_END_NAMESPACE michael@0: michael@0: // Local Variables: michael@0: // mode:C++ michael@0: // End: