wvuing/wvcommandutils/Inc/MCASettingSapExt.h
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     1 /*
       
     2 * Copyright (c) 2009 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: Interface to get the Settings Interface for getting/setting tonefilename etc
       
    15 *
       
    16 */
       
    17 #ifndef MCASETTINGSAPEXT_H
       
    18 #define MCASETTINGSAPEXT_H
       
    19 
       
    20 #include <badesca.h>
       
    21 #include <e32std.h>
       
    22 
       
    23 #include "MCASettingsPc.h"
       
    24 
       
    25 //#include"MCASettings.h"
       
    26 //class MCASettings;
       
    27 class CIMPSSAPSettings;
       
    28 class MCASettingsPc;
       
    29 
       
    30 
       
    31 class MCASettingSapExt
       
    32     {
       
    33     public:
       
    34 
       
    35         /*
       
    36 
       
    37         */
       
    38         virtual void SetIntValueL( const TDesC& aKey, TInt aValue ) = 0;
       
    39 
       
    40         /*
       
    41 
       
    42         */
       
    43         virtual TInt IntValueL( const TDesC& aKey ) = 0;
       
    44 
       
    45         /*
       
    46 
       
    47         */
       
    48         virtual void SetToneFileNameL( const TDesC& aToneFileName ) = 0;
       
    49 
       
    50         /*
       
    51 
       
    52         */
       
    53         virtual void GetToneFileNameL( TDes& aToneFileName ) = 0;
       
    54 
       
    55         /*
       
    56 
       
    57         */
       
    58         virtual  CIMPSSAPSettings* CurrentSAPLC() = 0;
       
    59         /*
       
    60 
       
    61         */
       
    62         virtual  CIMPSSAPSettings* StoredSAPLC() = 0;
       
    63 
       
    64 
       
    65 
       
    66         /*
       
    67           Destructor
       
    68         */
       
    69 
       
    70         virtual ~MCASettingSapExt() {};
       
    71 
       
    72 
       
    73     };
       
    74 
       
    75 #endif