satengine/SatServer/SatInternalClient/inc/MSatUiAdapter.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
equal deleted inserted replaced
42:35488577e233 46:2fa1fa551b0b
     1 /*
       
     2 * Copyright (c) 2002-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:  The adapter interface for the Sat Client. Used by clients to
       
    15 *                send envelope commands to SIM applications.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef MSATUIADAPTER_H
       
    22 #define MSATUIADAPTER_H
       
    23 
       
    24 //  INCLUDES
       
    25 #include <e32base.h>
       
    26 #include <e32svr.h>
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31  *  An abstract adapter interface.
       
    32  *  Use to send SAT envelope commands to the SIM.
       
    33  *
       
    34  *  @lib SatClient.lib
       
    35  *  @since Series 60 2.0
       
    36  */
       
    37 class MSatUiAdapter
       
    38     {
       
    39 
       
    40     public: // New functions
       
    41 
       
    42         /**
       
    43          * Response to the Set Up Menu command.
       
    44          * @param aMenuItem The selected menu item.
       
    45          * @param aHelpRequested Indicates whether help was requested.
       
    46          */
       
    47         virtual void MenuSelection(
       
    48             TInt aMenuItem,
       
    49             TBool aHelpRequested ) = 0;
       
    50 
       
    51         virtual void SessionTerminated( TInt8 aType ) = 0;
       
    52 
       
    53     };
       
    54 
       
    55 #endif // MSATUIADAPTER_H
       
    56 
       
    57 // End of File