convergedcallengine/csplugin/inc/mcsplinestatusobserver.h
branchRCL_3
changeset 20 987c9837762f
parent 0 ff3b6d0fd310
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
       
     1 /*
       
     2 * Copyright (c) 2007 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 "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:  Header file for MCSPLineStatusObserver class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MCSPLINESTATUSOBSERVER_H
       
    21 #define MCSPLINESTATUSOBSERVER_H
       
    22 
       
    23 //INCLUDES
       
    24 #include <etelmm.h>
       
    25 #include "rcsplinecontainer.h"
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 *  Virtual interface for monitoring line status changes.
       
    31 *
       
    32 *  @since S60 5.0
       
    33 */
       
    34 NONSHARABLE_CLASS(MCSPLineStatusObserver)
       
    35     {
       
    36     public:
       
    37 
       
    38         /**
       
    39         * Informs about line status changes.
       
    40         * @since S60 5.0
       
    41         * @param aLine the line that is monitored for events
       
    42         * @param aLineId the line id 
       
    43         * @param aCallStatus the line status
       
    44         */    
       
    45         virtual void LineStatusChanged( RMobileLine& aLine,
       
    46                 RCSPLineContainer::TCSPLineId aLineId, 
       
    47                 RMobileCall::TMobileCallStatus& aCallStatus ) = 0;
       
    48 
       
    49     };
       
    50 
       
    51 #endif // MCSPLINESTATUSOBSERVER_H
       
    52 
       
    53 //End of file