adaptationlayer/modematadaptation/modematcontroller_exe/inc/cmodematsrv.h
changeset 5 8ccc39f9d787
parent 0 63b37f68c1ce
child 8 6295dc2169f3
equal deleted inserted replaced
4:510c70acdbf6 5:8ccc39f9d787
    74     /**
    74     /**
    75      * Session count  
    75      * Session count  
    76      * @return Number of sessions open
    76      * @return Number of sessions open
    77      */ 
    77      */ 
    78     TInt SessionCount();
    78     TInt SessionCount();
    79     
    79 
    80     /**
    80     /**
    81      * Connect session to the modem  
    81      * Connect session to the modem  
    82      * @param CModemAtSession* aSession Pointer to the session
    82      * @param CModemAtSession* aSession Pointer to the session
    83      * @return Connection status: KErrNone, KErrAlreadyExists
    83      * @return Connection status: KErrNone, KErrAlreadyExists
    84      */    
    84      */    
    85     void ConnectToModem( CModemAtSession* aSession);
    85     TInt ConnectToModem( CModemAtSession* aSession);
    86     
    86 
    87     /**
    87     /**
    88      * HandleSignalInd  
    88      * HandleSignalInd  
    89      * @param aDteId Device Terminal ID
    89      * @param aDteId Device Terminal ID
    90      */ 
    90      */ 
    91     void HandleSignalInd( const TInt aDteId );
    91     void HandleSignalInd( const TInt aDteId );
   187     RPointerArray<CAtMessage> iAtMessageArray;
   187     RPointerArray<CAtMessage> iAtMessageArray;
   188     CModemAtHandler* iHandler;
   188     CModemAtHandler* iHandler;
   189     };
   189     };
   190 
   190 
   191 #endif  // CMODEMATSRV_H
   191 #endif  // CMODEMATSRV_H
       
   192