Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 class TDeneryToCharBase
30 IMPORT_C TInt DeneryToChar(TPtr& aBuf,TInt aDenery)const;
32 virtual TInt NumChars(TInt aDenery)const=0;
33 virtual void DoDeneryToChar(TPtr& aBuf,TInt aDenery)const=0;
37 class TRomanNumeral : public TDeneryToCharBase
45 IMPORT_C TInt NumChars(TInt aDenery)const;
46 IMPORT_C void DoDeneryToChar(TPtr& aBuf,TInt aDenery)const;
50 class TArabicNumeral : public TDeneryToCharBase
56 IMPORT_C TInt NumChars(TInt aDenery)const;
57 IMPORT_C void DoDeneryToChar(TPtr& aBuf,TInt aDenery)const;
61 class TAlphabeticNumeral : public TDeneryToCharBase
69 IMPORT_C TInt NumChars(TInt aDenery)const;
70 IMPORT_C void DoDeneryToChar(TPtr& aBuf,TInt aDenery)const;
72 void PropendDigitAsChar(TPtr& aValueText,TInt aDigit)const;