telutils/phoneparser/inc/phoneParserCommon.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
equal deleted inserted replaced
42:35488577e233 46:2fa1fa551b0b
     1 /*
       
     2 * Copyright (c) 2008-2008 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     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".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Common definitions
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef PHONEPARSERCOMMON_H
       
    20 #define PHONEPARSERCOMMON_H
       
    21 
       
    22 /**  Dtmf pause */
       
    23 const TInt KPhoneDtmfPause = 'p';
       
    24 /**  Dtmf wait */
       
    25 const TInt KPhoneDtmfWait = 'w';
       
    26 /**  Hash mark */
       
    27 const TInt KPhoneNumberHash = '#';
       
    28 /**  Asterisk mark */
       
    29 const TInt KPhoneNumberAsterisk = '*';
       
    30 /**  Plus mark */
       
    31 const TInt KPhonePlus = '+';
       
    32 /**  Valid Dtmf Chars */
       
    33 _LIT( KValidDtmfChars, "0123456789pw*+#" );
       
    34 
       
    35 
       
    36 #endif // PHONEPARSERCOMMON_H