adaptationlayer/tsy/nokiatsy_dll/inc/muiccoperationbase.h
changeset 0 63b37f68c1ce
child 5 8ccc39f9d787
equal deleted inserted replaced
-1:000000000000 0:63b37f68c1ce
       
     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 the License "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:   ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef _MUICCOPERATIONBASE_
       
    21 #define _MUICCOPERATIONBASE_
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 *  This class is the base class for all message handlers in NokiaTSY that
       
    31 *  need to handle UICC messages. This interface (ProcessUiccMsg -function) must
       
    32 *  be implemented in all message handlers.
       
    33 */
       
    34 
       
    35 class MUiccOperationBase
       
    36     {
       
    37     public:
       
    38 
       
    39         virtual TInt ProcessUiccMsg(
       
    40             TInt aTraId,
       
    41             TInt aStatus,
       
    42             const TDesC8& aFileData ) = 0;
       
    43 
       
    44     };
       
    45 
       
    46 #endif      // _MUICCOPERATIONBASE_
       
    47 
       
    48 // End of File