home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / include / xcountry.h < prev    next >
C/C++ Source or Header  |  1997-04-02  |  1KB  |  38 lines

  1. #ifndef __OOL_XCOUNTRY_H__
  2. #define __OOL_XCOUNTRY_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------- OS/2 Beta 1 */
  6. /*===========================================================================*/
  7. /*                              class: XCountryInfo                          */
  8. /*                       derived from: XObject                               */
  9. /*                        last update: 1/97                                  */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13.  
  14.  
  15. #include "xobject.h"
  16. #include "xstring.h"
  17.  
  18. class _export_ XCountryInfo: public XObject
  19. {
  20.     private:
  21.       COUNTRYINFO cInfo;
  22.     public:
  23.         XCountryInfo();
  24.         ULONG GetCountry() { return cInfo.country; }
  25.         ULONG GetCodePage() { return cInfo.codepage; }
  26.         void GetCurrency( XString * s) { *s = cInfo.szCurrency; }
  27.         ULONG GetDateFormat() { return cInfo.fsDateFmt; }
  28.         CHAR GetDateSeparator() { return cInfo.szDateSeparator[0]; }
  29.         CHAR GetDecimalSeparator( ) { return cInfo.szDecimal[0]; }
  30.         CHAR GetThousandsSeparator( ) { return cInfo.szThousandsSeparator[0]; }
  31.         CHAR GetTimeSeparator( ) { return cInfo.szTimeSeparator[0]; }
  32.         BOOL IsTimeAmPm() { return (cInfo.fsTimeFmt == 0 ? TRUE: FALSE); }
  33. };
  34.  
  35.  
  36.  
  37. #endif
  38.