telephonyserverplugins/licenseetsystub/licensee_tsy_stub/inc/mmmmesshandlerbase.h
changeset 0 3553901f7fa8
child 24 6638e7f4bd8f
equal deleted inserted replaced
-1:000000000000 0:3553901f7fa8
       
     1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 
       
    14 #ifndef MMMMESSHANDLERBASE_H
       
    15 #define MMMMESSHANDLERBASE_H
       
    16 
       
    17 //  INCLUDES
       
    18 #include <e32base.h>
       
    19 #include <et_tsy.h>
       
    20 
       
    21 // FORWARD DECLARATIONS
       
    22 class CMmDataPackage;
       
    23 
       
    24 // CLASS DECLARATION
       
    25  
       
    26 /**
       
    27  *  If the message is mode-independent it  will be handled here. 
       
    28  *  Otherwise, the message will be sent to message handler of active mode.
       
    29  */
       
    30 class MMmMessHandlerBase
       
    31     {
       
    32     public:
       
    33     
       
    34         /**
       
    35          * ExtFuncL
       
    36          *         
       
    37          * @param aIpc Ipc number of the request
       
    38          * @param aDataPackage Datapackage
       
    39          * @return Error value
       
    40          */
       
    41         virtual TInt  ExtFuncL( TInt aIpc, 
       
    42             const CMmDataPackage* aDataPackage ) = 0;
       
    43     };
       
    44     
       
    45 
       
    46 #endif // MMMMESSHANDLERBASE_H
       
    47 
       
    48 //  End of file