Update contrib.
2 * Copyright (c) 2002-2008 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
29 #ifndef KFeatureIdJapanese
30 #define KFeatureIdJapanese 1080
34 // LOCAL CONSTANTS AND MACROS
35 typedef MSortUtil* (*TSortUtilFactoryFunctionL)();
36 _LIT( KSortUtilImpl, "SortUtilImpl.dll" );
38 _LIT( KSortUtilImplJapan, "SortUtilImplJapan.dll" );
39 _LIT( KSortUtilImplKorean, "SortUtilImplKorean.dll" );
42 // -----------------------------------------------------------------------------
44 // -----------------------------------------------------------------------------
46 EXPORT_C CSortUtil* CSortUtil::NewL()
48 CSortUtil* self = new( ELeave ) CSortUtil;
49 CleanupStack::PushL( self );
55 // -----------------------------------------------------------------------------
56 // CSortUtil::~CSortUtil()
57 // -----------------------------------------------------------------------------
59 CSortUtil::~CSortUtil()
65 // -----------------------------------------------------------------------------
66 // CSortUtil::CSortUtil()
67 // -----------------------------------------------------------------------------
69 CSortUtil::CSortUtil()
73 // -----------------------------------------------------------------------------
74 // CSortUtil::ConstructL()
75 // -----------------------------------------------------------------------------
77 void CSortUtil::ConstructL()
80 FeatureManager::InitializeLibL();
81 if ( FeatureManager::FeatureSupported( KFeatureIdJapanese ) )
83 // load polymorphic implementation DLL
84 User::LeaveIfError( iLib.Load( KSortUtilImplJapan ) );
86 #ifdef __KOREAN_SORT__
89 // load polymorphic implementation DLL
90 User::LeaveIfError( iLib.Load( KSortUtilImplKorean ) );
95 // load polymorphic implementation DLL
96 User::LeaveIfError( iLib.Load( KSortUtilImpl ) );
99 FeatureManager::UnInitializeLib();
102 // load polymorphic implementation DLL
103 User::LeaveIfError( iLib.Load( KSortUtilImpl ) );
107 iInterface = ( *(TSortUtilFactoryFunctionL)iLib.Lookup( 1 ) )();
108 User::LeaveIfNull( iInterface );