sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* Implement the dummy charconv plugin CTIS1620aImplementation
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <convgeneratedcpp.h>
|
sl@0
|
21 |
#include <ecom/implementationproxy.h>
|
sl@0
|
22 |
#include "shiftjis.h"
|
sl@0
|
23 |
#include "tis1620.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
const TDesC8& CTIS1620aImplementation::ReplacementForUnconvertibleUnicodeCharacters()
|
sl@0
|
27 |
{
|
sl@0
|
28 |
return CnvShiftJis::ReplacementForUnconvertibleUnicodeCharacters();
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
TInt CTIS1620aImplementation::ConvertFromUnicode(CCnvCharacterSetConverter::TEndianness /*aDefaultEndiannessOfForeignCharacters*/,
|
sl@0
|
32 |
const TDesC8& /*aReplacementForUnconvertibleUnicodeCharacters*/, TDes8& /*aForeign*/, const TDesC16& /*aUnicode*/,
|
sl@0
|
33 |
CCnvCharacterSetConverter::TArrayOfAscendingIndices& /*aIndicesOfUnconvertibleCharacters*/)
|
sl@0
|
34 |
{
|
sl@0
|
35 |
return 0;
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
TInt CTIS1620aImplementation::ConvertToUnicode(CCnvCharacterSetConverter::TEndianness /*aDefaultEndiannessOfForeignCharacters*/,
|
sl@0
|
39 |
TDes16& /*aUnicode*/, const TDesC8& /*aForeign*/, TInt&, TInt& /*aNumberOfUnconvertibleCharacters*/, TInt& /*aIndexOfFirstByteOfFirstUnconvertibleCharacter*/)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
return 0;
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
TBool CTIS1620aImplementation::IsInThisCharacterSetL(TBool& /*aSetToTrue*/, TInt& /*aConfidenceLevel*/, const TDesC8&)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
return EFalse;
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
CTIS1620aImplementation* CTIS1620aImplementation::NewL()
|
sl@0
|
50 |
{
|
sl@0
|
51 |
CTIS1620aImplementation* self = new (ELeave) CTIS1620aImplementation;
|
sl@0
|
52 |
return self;
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
|
sl@0
|
56 |
CTIS1620aImplementation::CTIS1620aImplementation()
|
sl@0
|
57 |
{
|
sl@0
|
58 |
//default constructor.. do nothing
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
CTIS1620aImplementation::~ CTIS1620aImplementation()
|
sl@0
|
62 |
{
|
sl@0
|
63 |
//default destructor .. do nothing
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
// THE FOLLOWING FROM ECOM CREATION FUNCTION
|
sl@0
|
67 |
|
sl@0
|
68 |
const TImplementationProxy ImplementationTable[] =
|
sl@0
|
69 |
{
|
sl@0
|
70 |
IMPLEMENTATION_PROXY_ENTRY(KTIS1620aImplUid, CTIS1620aImplementation::NewL),
|
sl@0
|
71 |
IMPLEMENTATION_PROXY_ENTRY(KTIS1620bImplUid, CTIS1620bImplementation::NewL)
|
sl@0
|
72 |
};
|
sl@0
|
73 |
|
sl@0
|
74 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
|
sl@0
|
77 |
|
sl@0
|
78 |
return ImplementationTable;
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|