satengine/SatServer/SatInternalClient/inc/MSatUiAdapter.h
author Pat Downey <patd@symbian.org>
Tue, 11 May 2010 12:32:07 +0100
changeset 16 d219857afeec
parent 0 ff3b6d0fd310
permissions -rw-r--r--
Add missing docml files.

/*
* Copyright (c) 2002-2008 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  The adapter interface for the Sat Client. Used by clients to
*                send envelope commands to SIM applications.
*
*/



#ifndef MSATUIADAPTER_H
#define MSATUIADAPTER_H

//  INCLUDES
#include <e32base.h>
#include <e32svr.h>

// CLASS DECLARATION

/**
 *  An abstract adapter interface.
 *  Use to send SAT envelope commands to the SIM.
 *
 *  @lib SatClient.lib
 *  @since Series 60 2.0
 */
class MSatUiAdapter
    {

    public: // New functions

        /**
         * Response to the Set Up Menu command.
         * @param aMenuItem The selected menu item.
         * @param aHelpRequested Indicates whether help was requested.
         */
        virtual void MenuSelection(
            TInt aMenuItem,
            TBool aHelpRequested ) = 0;

        virtual void SessionTerminated( TInt8 aType ) = 0;

    };

#endif // MSATUIADAPTER_H

// End of File