phonesrv_plat/converged_call_provider_api/inc/mccpcsobserver.h
changeset 0 ff3b6d0fd310
child 19 7d48bed6ce0c
equal deleted inserted replaced
-1:000000000000 0:ff3b6d0fd310
       
     1 /*
       
     2 * Copyright (c) 2006 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:  CCP CS call class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MCCPCSOBSERVER_H
       
    20 #define MCCPCSOBSERVER_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32base.h>
       
    24 #include "mccpobserver.h"
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class MCCPCall;
       
    28 class MCCPConferenceCall;
       
    29 
       
    30 /**
       
    31 * CCP CS specific operations observer class.
       
    32 * Observer for CCP events, errors and statuses etc. 
       
    33 *
       
    34 *  @since S60 3.2
       
    35 */
       
    36 class MCCPCSObserver : public MCCPObserver
       
    37     {
       
    38 protected:
       
    39     /** 
       
    40     * Protects the observer being deleted through the observer interface 
       
    41     * @since S60 3.2
       
    42     */
       
    43     virtual inline ~MCCPCSObserver() {};
       
    44 
       
    45 public:
       
    46     /**
       
    47     * Notify of MO call that is not requested
       
    48     * @since S60 3.2
       
    49     * @param aCall Pointer to the created MO call in plug-in.
       
    50     * @return none
       
    51     */
       
    52     virtual void MoCallCreated( MCCPCall& aCall ) = 0;
       
    53 
       
    54     /**
       
    55     * Notify of conference call that is not requested.
       
    56     * @since S60 3.2
       
    57     * @param aConferenceCall Created conference
       
    58     * @return none
       
    59     */
       
    60 	virtual void ConferenceCallCreated( MCCPConferenceCall& aConferenceCall ) = 0;
       
    61 
       
    62     /**
       
    63     * Notify data port information for video telephony.
       
    64     * @since S60 3.2
       
    65     * @param aPortName Dataport information.
       
    66     * @return none
       
    67     */
       
    68 	virtual void DataPortName( TName& aPortName ) = 0;
       
    69     };
       
    70 
       
    71 #endif // MCCPCSOBSERVER_H
       
    72 
       
    73 // End of File