connectivitylayer/isce/isirouter_dll/inc/isicltransceiver.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 #ifndef __ISICLTRANSCEIVER_H__
       
    19 #define __ISICLTRANSCEIVER_H__
       
    20 
       
    21 #include "misilinkrouterif.h"     // For MISILinkRouterIf
       
    22 #include "isiinternaldefs.h"      // For KMaxNumOfObjId
       
    23 
       
    24 class MISIRouterLinkIf;
       
    25 class DISIRouter;
       
    26 
       
    27 NONSHARABLE_CLASS( DISICLTransceiver ) : public DBase, public MISILinkRouterIf
       
    28     {
       
    29     
       
    30     public:
       
    31     
       
    32         DISICLTransceiver( DISIRouter* aPtr );
       
    33     
       
    34         ~DISICLTransceiver();
       
    35     
       
    36         TInt ValidateISIMessage( TDes8& aMessage );
       
    37     
       
    38         void SendCommIsaEntityNotReachableResp( TDes8& aMessage );
       
    39     
       
    40         TUint8 MapDeviceToMedia( const TUint8 aDevice );
       
    41     
       
    42         //From MISILinkRouterIf
       
    43         void RouteISIMessage( TDes8& aMessage );
       
    44 
       
    45     private:
       
    46     
       
    47         enum TISIMedias
       
    48             {
       
    49             EISIMediaSharedMemory = 0x00,
       
    50             EISIMediaTest,
       
    51             EISIAmountOfMedias
       
    52             };
       
    53 
       
    54         MISIRouterLinkIf**   iLinksArray;
       
    55         DISIRouter*          iRouter;
       
    56         
       
    57     };
       
    58 
       
    59 #endif /* __ISICLTRANSCEIVER_H__ */
       
    60