author | John Imhofe <john.imhofe@nokia.com> |
Mon, 21 Dec 2009 16:14:42 +0000 | |
changeset 2 | 4122176ea935 |
parent 0 | a41df078684a |
permissions | -rw-r--r-- |
2
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
1 |
/* |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
2 |
* Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies). |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
3 |
* All rights reserved. |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
4 |
* This component and the accompanying materials are made available |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
5 |
* under the terms of "Eclipse Public License v1.0" |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
6 |
* which accompanies this distribution, and is available |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
8 |
* |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
9 |
* Initial Contributors: |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
10 |
* Nokia Corporation - initial contribution. |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
11 |
* |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
12 |
* Contributors: |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
13 |
* |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
14 |
* Description: |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
15 |
* |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
16 |
*/ |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
17 |
|
0 | 18 |
|
19 |
#if !defined __COMPLOCL_H__ |
|
20 |
#define __COMPLOCL_H__ |
|
21 |
||
22 |
#if !defined(__E32STD_H__) |
|
23 |
#include <E32std.h> |
|
24 |
#endif |
|
25 |
||
26 |
class LLocaleData |
|
27 |
{ |
|
28 |
public: |
|
29 |
static const TLanguage Language; |
|
30 |
static const TInt CountryCode; |
|
31 |
static const TInt UniversalTimeOffset; |
|
32 |
static const TDateFormat DateFormat; |
|
33 |
static const TTimeFormat TimeFormat; |
|
34 |
static const TText * const CurrencySymbol; |
|
35 |
static const TLocalePos CurrencySymbolPosition; |
|
36 |
static const TBool CurrencySpaceBetween; |
|
37 |
static const TInt CurrencyDecimalPlaces; |
|
38 |
static const TLocale::TNegativeCurrencyFormat NegativeCurrencyFormat; |
|
39 |
static const TBool CurrencyTriadsAllowed; |
|
40 |
static const TText* const ShortDateFormatSpec; |
|
41 |
static const TText* const LongDateFormatSpec; |
|
42 |
static const TText* const TimeFormatSpec; |
|
43 |
static const TFatUtilityFunctions* const FatUtilityFunctions; |
|
44 |
static const TText * const ThousandsSeparator; |
|
45 |
static const TText * const DecimalSeparator; |
|
46 |
static const TText * const DateSeparator[KMaxDateSeparators]; |
|
47 |
static const TText * const TimeSeparator[KMaxTimeSeparators]; |
|
48 |
static const TLocalePos AmPmSymbolPosition; |
|
49 |
static const TBool AmPmSpaceBetween; |
|
50 |
static const TDaylightSavingZone HomeDaylightSavingZone; |
|
51 |
static const TUint WorkDays; |
|
52 |
static const TDay StartOfWeek; |
|
53 |
static const TClockFormat ClockFormat; |
|
54 |
static const TUnitsFormat UnitsGeneral; |
|
55 |
static const TUnitsFormat UnitsDistanceLong; |
|
56 |
static const TUnitsFormat UnitsDistanceShort; |
|
57 |
static const TUint ExtraNegativeCurrencyFormatFlags; |
|
58 |
static const TLanguage LanguageDowngrade[3]; |
|
59 |
static const TDigitType DigitType; |
|
60 |
}; |
|
61 |
||
62 |
#endif |
|
63 |
||
64 |