Removed unnecessary #ifdef guards around an inclusion - the included file has them anyway.
/*
* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: Keymapping data implementation for
*
*/
#include <ecom/implementationproxy.h>
#include <languages.hrh>
#include "PtiKeymappings_ITUT_08.h"
class CPtiVariantITUT_08DataFactory : public CPtiKeyMapDataFactory
{
public:
CPtiVariantITUT_08DataFactory() {}
static CPtiVariantITUT_08DataFactory* NewL();
MPtiKeyMapData* KeyMapDataForLanguageL(TInt aLanguageCode);
void ListLanguagesL(RArray<TInt>& aResult);
};
CPtiVariantITUT_08DataFactory* CPtiVariantITUT_08DataFactory::NewL()
{
return new (ELeave) CPtiVariantITUT_08DataFactory();
}
const TImplementationProxy ImplementationTable[] =
{
IMPLEMENTATION_PROXY_ENTRY(0x1028189e, CPtiVariantITUT_08DataFactory::NewL)
};
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
{
aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
return ImplementationTable;
}
MPtiKeyMapData* CPtiVariantITUT_08DataFactory::KeyMapDataForLanguageL(TInt aLanguageCode)
{
if (aLanguageCode == ELangNorwegian)
{
return CPtiLangDataImplNorwegian::NewL();
}
return NULL;
}
void CPtiVariantITUT_08DataFactory::ListLanguagesL(RArray<TInt>& aResult)
{
CleanupClosePushL(aResult);
aResult.AppendL(ELangNorwegian);
CleanupStack::Pop();
}
// End of file