sl@0: /* sl@0: * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef NUMBERGROUPING_STD_H sl@0: #define NUMBERGROUPING_STD_H sl@0: sl@0: // standard includes sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: // number grouping constants sl@0: sl@0: const TInt KSingleCharacter = 1; sl@0: sl@0: const TInt KErrInvalidChar = -45; sl@0: const TInt KErrIndexOutOfRange = -46; sl@0: const TInt KErrSyntaxError = -47; sl@0: sl@0: const TInt KStateMatched = -1; sl@0: const TInt KStateNoMatch = 0; sl@0: sl@0: const TInt KCharacterDot = 11; sl@0: const TInt KCharacterPlus = 12; sl@0: sl@0: // Panic Enumeration sl@0: sl@0: enum TNumberGroupingPanic sl@0: { sl@0: ENumberGroupingInvalidSeparatorCharacterInFormat, sl@0: ENumberGroupingMatchingPatternVersusFormatPatternMismatch, sl@0: ENumberGroupingNoInitialDigitsInResource, sl@0: ENumberGroupingBadMinMaxDigitRangeInResource, sl@0: ENumberGroupingFormattedNumberAlreadyExists, sl@0: ENumberGroupingNoSuchStateMachine, sl@0: ENumberGroupingBadLengthToGroup sl@0: }; sl@0: sl@0: sl@0: #endif // NUMBERGROUPING_STD_H sl@0: sl@0: // End of File