os/ossrv/stdcpp/src/messages.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
 * Copyright (c) 1999
sl@0
     4
 * Silicon Graphics Computer Systems, Inc.
sl@0
     5
 *
sl@0
     6
 * Copyright (c) 1999 
sl@0
     7
 * Boris Fomitchev
sl@0
     8
 *
sl@0
     9
 * This material is provided "as is", with absolutely no warranty expressed
sl@0
    10
 * or implied. Any use is at your own risk.
sl@0
    11
 *
sl@0
    12
 * Permission to use or copy this software for any purpose is hereby granted 
sl@0
    13
 * without fee, provided the above notices are retained on all copies.
sl@0
    14
 * Permission to modify the code and to distribute modified code is granted,
sl@0
    15
 * provided the above notices are retained, and a notice that the code was
sl@0
    16
 * modified is included with the above copyright notice.
sl@0
    17
 *
sl@0
    18
 */ 
sl@0
    19
# include "stlport_prefix.h"
sl@0
    20
sl@0
    21
# include "message_facets.h"
sl@0
    22
sl@0
    23
_STLP_BEGIN_NAMESPACE
sl@0
    24
sl@0
    25
//----------------------------------------------------------------------
sl@0
    26
// messages<char>
sl@0
    27
sl@0
    28
_STLP_EXP_DECLSPEC messages<char>::messages(_Messages* imp)  : 
sl@0
    29
  _BaseFacet(1), _M_impl(imp) { imp->_M_delete = false;  }
sl@0
    30
sl@0
    31
_STLP_EXP_DECLSPEC messages<char>::~messages()
sl@0
    32
{ 
sl@0
    33
  if (_M_impl && _M_impl->_M_delete)  delete _M_impl; 
sl@0
    34
}
sl@0
    35
sl@0
    36
_STLP_EXP_DECLSPEC int messages<char>::do_open(const string& filename, const locale& l) const
sl@0
    37
{
sl@0
    38
  return _M_impl->do_open(filename, l);
sl@0
    39
}
sl@0
    40
sl@0
    41
_STLP_EXP_DECLSPEC string messages<char>::do_get(catalog cat,
sl@0
    42
                              int set, int p_id, const string& dfault) const
sl@0
    43
{
sl@0
    44
  return _M_impl->do_get(cat, set, p_id, dfault);
sl@0
    45
}
sl@0
    46
sl@0
    47
_STLP_EXP_DECLSPEC void messages<char>::do_close(catalog cat) const
sl@0
    48
{
sl@0
    49
  _M_impl->do_close(cat);
sl@0
    50
}
sl@0
    51
sl@0
    52
_STLP_EXP_DECLSPEC _Messages::_Messages()
sl@0
    53
{ }
sl@0
    54
sl@0
    55
_STLP_EXP_DECLSPEC _Messages::~_Messages()
sl@0
    56
{}
sl@0
    57
sl@0
    58
_STLP_EXP_DECLSPEC int _Messages::do_open(const string&, const locale&) const
sl@0
    59
{  
sl@0
    60
  return -1;
sl@0
    61
}
sl@0
    62
sl@0
    63
string _Messages::do_get(catalog,
sl@0
    64
			 int, int, const string& dfault) const
sl@0
    65
{
sl@0
    66
  return dfault;
sl@0
    67
}
sl@0
    68
sl@0
    69
 void _Messages::do_close(catalog) const
sl@0
    70
{}
sl@0
    71
sl@0
    72
sl@0
    73
# ifndef _STLP_NO_WCHAR_T
sl@0
    74
sl@0
    75
_STLP_EXP_DECLSPEC messages<wchar_t>::messages(_Messages* imp)  : 
sl@0
    76
  _BaseFacet(1), _M_impl(imp) { imp->_M_delete = false;  }
sl@0
    77
sl@0
    78
_STLP_EXP_DECLSPEC messages<wchar_t>::~messages()
sl@0
    79
{ if (_M_impl && _M_impl->_M_delete) delete _M_impl; }
sl@0
    80
sl@0
    81
_STLP_EXP_DECLSPEC int messages<wchar_t>::do_open(const string& filename, const locale& L) const
sl@0
    82
{
sl@0
    83
  return _M_impl->do_open(filename, L);
sl@0
    84
}
sl@0
    85
sl@0
    86
_STLP_EXP_DECLSPEC wstring
sl@0
    87
messages<wchar_t>::do_get(catalog thecat,
sl@0
    88
                          int set, int p_id, const wstring& dfault) const
sl@0
    89
{
sl@0
    90
  return _M_impl->do_get(thecat, set, p_id, dfault);
sl@0
    91
}
sl@0
    92
sl@0
    93
_STLP_EXP_DECLSPEC void messages<wchar_t>::do_close(catalog cat) const
sl@0
    94
{
sl@0
    95
  _M_impl->do_close(cat);
sl@0
    96
}
sl@0
    97
sl@0
    98
wstring
sl@0
    99
_Messages::do_get(catalog,
sl@0
   100
		  int, int, const wstring& dfault) const
sl@0
   101
{
sl@0
   102
  return dfault;
sl@0
   103
}
sl@0
   104
sl@0
   105
# endif
sl@0
   106
sl@0
   107
_STLP_END_NAMESPACE
sl@0
   108
sl@0
   109
// Local Variables:
sl@0
   110
// mode:C++
sl@0
   111
// End:
sl@0
   112