--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/textinput/ptienginev2/languages/PtiFactory_ITUT_05.cpp Tue Feb 02 01:02:04 2010 +0200
@@ -0,0 +1,80 @@
+/*
+* Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "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_05.h"
+
+class CPtiVariantITUT_05DataFactory : public CPtiKeyMapDataFactory
+ {
+ public:
+ CPtiVariantITUT_05DataFactory() {}
+ static CPtiVariantITUT_05DataFactory* NewL();
+ MPtiKeyMapData* KeyMapDataForLanguageL(TInt aLanguageCode);
+ void ListLanguagesL(RArray<TInt>& aResult);
+ };
+
+
+CPtiVariantITUT_05DataFactory* CPtiVariantITUT_05DataFactory::NewL()
+ {
+ return new (ELeave) CPtiVariantITUT_05DataFactory();
+ }
+
+
+const TImplementationProxy ImplementationTable[] =
+ {
+ IMPLEMENTATION_PROXY_ENTRY(0x1028189b, CPtiVariantITUT_05DataFactory::NewL)
+ };
+
+
+EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
+ {
+ aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
+ return ImplementationTable;
+ }
+
+
+MPtiKeyMapData* CPtiVariantITUT_05DataFactory::KeyMapDataForLanguageL(TInt aLanguageCode)
+ {
+ if (aLanguageCode == ELangItalian)
+ {
+ return CPtiLangDataImplItalian::NewL();
+ }
+
+ return NULL;
+ }
+
+
+void CPtiVariantITUT_05DataFactory::ListLanguagesL(RArray<TInt>& aResult)
+ {
+ aResult.AppendL(ELangItalian);
+ }
+
+// End of file