connectivitylayer/isce/isirouter_dll/inc/misilinkrouterif.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: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __ISILINKROUTERIF_H__
       
    21 #define __ISILINKROUTERIF_H__
       
    22 
       
    23 #include <e32def.h>                 // For TInt, TAny
       
    24 
       
    25 /*
       
    26 * Abstract interface for link to use router services.
       
    27 */
       
    28 class MISILinkRouterIf
       
    29     {
       
    30 
       
    31     public:
       
    32 
       
    33         /*
       
    34         * Receive message from link.
       
    35         * Called without FM held.
       
    36         * @param aMsg, message to be received
       
    37         */
       
    38         virtual void RouteISIMessage( TDes8& aMsg ) = 0;
       
    39 
       
    40     };
       
    41 
       
    42 
       
    43 
       
    44 #endif /* __ISILINKROUTERIF_H__ */