home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 May / PCFMay2001.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / locale.stl < prev    next >
Encoding:
Text File  |  2000-01-31  |  2.3 KB  |  65 lines

  1. #ifndef __LOCALE_STL
  2. #define __LOCALE_STL
  3. #pragma option push -b -a8 -pc -Vx- -Ve- -w-inl -w-aus -w-sig
  4. /***************************************************************************
  5.  *
  6.  * locale - Declarations for the Standard Library locale classes
  7.  *
  8.  * $Id: locale,v 1.86 1996/10/22 05:11:35 delaney Exp $
  9.  *
  10.  ***************************************************************************
  11.  *
  12.  * Copyright (c) 1994-1999 Rogue Wave Software, Inc.  All Rights Reserved.
  13.  *
  14.  * This computer software is owned by Rogue Wave Software, Inc. and is
  15.  * protected by U.S. copyright laws and other laws and by international
  16.  * treaties.  This computer software is furnished by Rogue Wave Software,
  17.  * Inc. pursuant to a written license agreement and may be used, copied,
  18.  * transmitted, and stored only in accordance with the terms of such
  19.  * license and with the inclusion of the above copyright notice.  This
  20.  * computer software or any other copies thereof may not be provided or
  21.  * otherwise made available to any other person.
  22.  *
  23.  * U.S. Government Restricted Rights.  This computer software is provided
  24.  * with Restricted Rights.  Use, duplication, or disclosure by the
  25.  * Government is subject to restrictions as set forth in subparagraph (c)
  26.  * (1) (ii) of The Rights in Technical Data and Computer Software clause
  27.  * at DFARS 252.227-7013 or subparagraphs (c) (1) and (2) of the
  28.  * Commercial Computer Software รป Restricted Rights at 48 CFR 52.227-19,
  29.  * as applicable.  Manufacturer is Rogue Wave Software, Inc., 5500
  30.  * Flatiron Parkway, Boulder, Colorado 80301 USA.
  31.  *
  32.  **************************************************************************/
  33.  
  34. #ifndef __STD_LOCALE__
  35. #define __STD_LOCALE__
  36.  
  37. // Get the locale class
  38. #include <rw/rwlocale>
  39.  
  40. // Get supporting ios stuff
  41. #include <rw/iosbase>
  42.  
  43. // Get the facets
  44. #include <rw/ctype>
  45. #include <rw/codecvt>
  46. #include <rw/collate>
  47. #include <rw/numeral>
  48. #include <rw/time>
  49. #include <rw/money>
  50. #include <rw/messages>
  51. // Get declarations for vendor-defined extensions, such as
  52. // declarations of the facets of the native ("") locale.
  53. #include <rw/vendor>
  54.  
  55. // Get usefacet and hasfacet
  56. #include <rw/usefacet>
  57.  
  58. #include <rw/numbrw>
  59. #include <iomanip>
  60.  
  61. #endif // __STD_LOCALE__
  62.  
  63. #pragma option pop
  64. #endif /* __LOCALE_STL */
  65.