?? locale
字號:
/*
* Copyright (c) 1999
* Boris Fomitchev
*
* This material is provided "as is", with absolutely no warranty expressed
* or implied. Any use is at your own risk.
*
* Permission to use or copy this software for any purpose is hereby granted
* without fee, provided the above notices are retained on all copies.
* Permission to modify the code and to distribute modified code is granted,
* provided the above notices are retained, and a notice that the code was
* modified is included with the above copyright notice.
*
*/
#ifndef __STLPORT_LOCALE
# define __STLPORT_LOCALE
# ifndef __STL_CONFIG_H
# include <stl_config.h>
# endif
# ifndef __STLPORT_CSTDLIB
# include <cstdlib>
# endif
# include __STL_NATIVE_HEADER(locale)
# ifdef __STL_USE_OWN_NAMESPACE
__STL_BEGIN_NAMESPACE
// from <cwchar>
using __STL_VENDOR_CSTD::mbstate_t;
// _lib.locale_, locale:
using __STL_VENDOR_STD::locale;
using __STL_VENDOR_STD::use_facet;
using __STL_VENDOR_STD::has_facet;
// _lib.locale.convenience_, convenience interfaces:
using __STL_VENDOR_STD::isspace;
using __STL_VENDOR_STD::isprint;
using __STL_VENDOR_STD::iscntrl;
using __STL_VENDOR_STD::isupper;
using __STL_VENDOR_STD::islower;
using __STL_VENDOR_STD::isalpha;
using __STL_VENDOR_STD::isdigit;
using __STL_VENDOR_STD::ispunct;
using __STL_VENDOR_STD::isxdigit;
using __STL_VENDOR_STD::isalnum;
using __STL_VENDOR_STD::isgraph;
using __STL_VENDOR_STD::toupper;
using __STL_VENDOR_STD::tolower;
// _lib.category.ctype_ and _lib.facet.ctype.special_, ctype:
using __STL_VENDOR_STD::ctype_base;
using __STL_VENDOR_STD::ctype;
using __STL_VENDOR_STD::ctype_byname;
using __STL_VENDOR_STD::codecvt_base;
using __STL_VENDOR_STD::codecvt;
using __STL_VENDOR_STD::codecvt_byname;
// _lib.category.numeric_ and _lib.facet.numpunct_, numeric:
using __STL_VENDOR_STD::num_get;
using __STL_VENDOR_STD::num_put;
using __STL_VENDOR_STD::numpunct;
using __STL_VENDOR_STD::numpunct_byname;
// _lib.category.collate_, collation:
using __STL_VENDOR_STD::collate;
using __STL_VENDOR_STD::collate_byname;
// _lib.category.time_, date and time:
using __STL_VENDOR_STD::time_base;
using __STL_VENDOR_STD::time_get;
using __STL_VENDOR_STD::time_get_byname;
using __STL_VENDOR_STD::time_put;
using __STL_VENDOR_STD::time_put_byname;
// _lib.category.monetary_, money:
using __STL_VENDOR_STD::money_base;
using __STL_VENDOR_STD::money_get;
using __STL_VENDOR_STD::money_put;
using __STL_VENDOR_STD::moneypunct;
using __STL_VENDOR_STD::moneypunct_byname;
#if !( defined(__MSL_CPP__) && \
( (__MSL_CPP__ >= 0x5000 && defined( _MSL_NO_MESSAGE_FACET )) || \
(__MSL_CPP__ < 0x5000 && defined( MSIPL_NL_TYPES )) \
) )
using __STL_VENDOR_STD::messages_base;
using __STL_VENDOR_STD::messages;
using __STL_VENDOR_STD::messages_byname;
#endif // _MSL_NO_MESSAGE_FACET
__STL_END_NAMESPACE
#endif /* __STL_OWN_NAMESPACE */
#endif /* __STLPORT_LOCALE */
// Local Variables:
// mode:C++
// End:
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -