phonesrv_plat/converged_call_provider_api/inc/mccpextensionobserver.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 extension observer. 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MCCPEXTENSIONOBSERVER_H
       
    20 #define MCCPEXTENSIONOBSERVER_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 /**
       
    26 * CCP extension related actions observer-class.
       
    27 * Results of plug-in specific requests  or custom notifications 
       
    28 * and errors are returned using this class
       
    29 *
       
    30 * @since S60 3.2
       
    31 */
       
    32 class MCCPExtensionObserver
       
    33     {
       
    34 protected:
       
    35     /** 
       
    36     * Protects the observer being deleted through the observer interface 
       
    37     * @since S60 3.2
       
    38     */
       
    39     virtual inline ~MCCPExtensionObserver() {};
       
    40 
       
    41 public:
       
    42     /**
       
    43     * HandleExtensionEvents.
       
    44     * @since S60 3.2
       
    45     * @param aServiceId Service-id used for the event.
       
    46     * @param aEvent Event.
       
    47     * @param aStatus Status code
       
    48     * @return none
       
    49     */
       
    50     virtual void HandleExtensionEvents( TUint32 aServiceId,
       
    51     									TInt aEvent,
       
    52 	                                    TInt aStatus ) = 0;
       
    53     };
       
    54 
       
    55 #endif // MCCPEXTENSIONOBSERVER_H
       
    56 
       
    57 // End of File