voipplugins/voipadapters/provisioningfile/inc/wpprovisioningfileconst.h
changeset 0 a4daefaec16c
equal deleted inserted replaced
-1:000000000000 0:a4daefaec16c
       
     1 /*
       
     2 * Copyright (c) 2006 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:  ProvisioningFile common header.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef WPPROVISIONINGFILECONST_H
       
    20 #define WPPROVISIONINGFILECONST_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 // CONSTANTS
       
    26 const TUid KProvisioningFileUid = { 0x10275409 };
       
    27 
       
    28 _LIT( KProvFileIapSetting, "Access points:" );
       
    29 _LIT( KProvFileSipSetting, "SIP settings" );
       
    30 _LIT( KProvFileSccpSettings, "SCCP settings" );
       
    31 
       
    32 /** File path configuration. No real path used 
       
    33     here because code scanner error */
       
    34 _LIT( KDefaultFilePath, "defaultpath" );
       
    35 
       
    36 enum TProtocolType
       
    37     {
       
    38     EProtocolNone    = -1,
       
    39     EProtocolSIP     = 0,
       
    40     EProtocolSCCP    = 1,
       
    41     };
       
    42 
       
    43 #endif // WPPROVISIONINGFILECONST_H   
       
    44             
       
    45 // End of File