locales/loce32/language/src/language.cpp
branchRCL_3
changeset 106 e4e3998ddda2
equal deleted inserted replaced
100:9dbe1b043bea 106:e4e3998ddda2
       
     1 /*
       
     2 * Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include <kernel/ls_std.h>
       
    21 #include "locl_language.h"
       
    22 
       
    23 EXPORT_C TLanguage LoclLanguage::Language()
       
    24 	{
       
    25 	return(LanguageAspect::Language);
       
    26 	}
       
    27 
       
    28 EXPORT_C TDigitType LoclLanguage::DigitType()
       
    29 	{
       
    30 	return(LanguageAspect::DigitType);
       
    31 	}
       
    32 
       
    33 EXPORT_C const TLanguage* LoclLanguage::LanguageDowngrade()
       
    34 	{
       
    35 	return(&LanguageAspect::LanguageDowngrade[0]);
       
    36 	}
       
    37 
       
    38 EXPORT_C const TFatUtilityFunctions* LoclLanguage::FatUtilityFunctions()
       
    39 	{
       
    40 
       
    41 	return(LanguageAspect::FatUtilityFunctions);
       
    42 	}
       
    43 
       
    44 EXPORT_C const TText * const * LoclLanguage::DateSuffixTable()
       
    45 	{
       
    46 
       
    47 	return(&LanguageAspect::DateSuffixTable[0]);
       
    48 	}
       
    49 
       
    50 EXPORT_C const TText * const * LoclLanguage::DayTable()
       
    51 	{
       
    52 
       
    53 	return(&LanguageAspect::DayTable[0]);
       
    54 	}
       
    55 
       
    56 EXPORT_C const TText * const * LoclLanguage::DayAbbTable()
       
    57 	{
       
    58 
       
    59 	return(&LanguageAspect::DayAbbTable[0]);
       
    60 	}
       
    61 
       
    62 EXPORT_C const TText * const * LoclLanguage::MonthTable()
       
    63 	{
       
    64 
       
    65 	return(&LanguageAspect::MonthTable[0]);
       
    66 	}
       
    67 
       
    68 EXPORT_C const TText * const * LoclLanguage::MonthAbbTable()
       
    69 	{
       
    70 
       
    71 	return(&LanguageAspect::MonthAbbTable[0]);
       
    72 	}
       
    73 
       
    74 EXPORT_C const TText * const * LoclLanguage::AmPmTable()
       
    75 	{
       
    76 
       
    77 	return(&LanguageAspect::AmPmTable[0]);
       
    78 	}
       
    79 
       
    80 EXPORT_C const TText * const * LoclLanguage::MsgTable()
       
    81 	{
       
    82 
       
    83 	return(&LanguageAspect::MsgTable[0]);
       
    84 	}
       
    85 
       
    86