kerneltest/f32test/locl/localeutils/complocl.h
changeset 31 56f325a607ea
parent 15 4122176ea935
child 32 c9417927a896
child 33 0173bcd7697c
equal deleted inserted replaced
15:4122176ea935 31:56f325a607ea
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of the License "Symbian Foundation License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #if !defined __COMPLOCL_H__
       
    17 #define __COMPLOCL_H__
       
    18 
       
    19 #if !defined(__E32STD_H__)
       
    20 #include <E32std.h>
       
    21 #endif
       
    22 
       
    23 class LLocaleData
       
    24 	{
       
    25 	public:
       
    26 	static const TLanguage Language;
       
    27 	static const TInt CountryCode;
       
    28 	static const TInt UniversalTimeOffset;
       
    29 	static const TDateFormat DateFormat;
       
    30 	static const TTimeFormat TimeFormat;
       
    31 	static const TText * const CurrencySymbol;
       
    32 	static const TLocalePos CurrencySymbolPosition;
       
    33 	static const TBool CurrencySpaceBetween;
       
    34 	static const TInt CurrencyDecimalPlaces;
       
    35 	static const TLocale::TNegativeCurrencyFormat NegativeCurrencyFormat;
       
    36 	static const TBool CurrencyTriadsAllowed;
       
    37 	static const TText* const ShortDateFormatSpec;
       
    38 	static const TText* const LongDateFormatSpec;
       
    39 	static const TText* const TimeFormatSpec;
       
    40 	static const TFatUtilityFunctions* const FatUtilityFunctions;
       
    41 	static const TText * const ThousandsSeparator;
       
    42 	static const TText * const DecimalSeparator;
       
    43 	static const TText * const DateSeparator[KMaxDateSeparators];
       
    44 	static const TText * const TimeSeparator[KMaxTimeSeparators];
       
    45 	static const TLocalePos AmPmSymbolPosition;
       
    46 	static const TBool AmPmSpaceBetween;
       
    47 	static const TDaylightSavingZone HomeDaylightSavingZone;
       
    48 	static const TUint WorkDays;
       
    49 	static const TDay StartOfWeek;
       
    50 	static const TClockFormat ClockFormat;
       
    51 	static const TUnitsFormat UnitsGeneral;
       
    52 	static const TUnitsFormat UnitsDistanceLong;
       
    53 	static const TUnitsFormat UnitsDistanceShort;
       
    54 	static const TUint ExtraNegativeCurrencyFormatFlags;
       
    55 	static const TLanguage LanguageDowngrade[3];
       
    56 	static const TDigitType DigitType;
       
    57 	};
       
    58 
       
    59 #endif
       
    60 
       
    61