convergedcallengine/cce/inc/mccespsobserver.h
changeset 0 ff3b6d0fd310
equal deleted inserted replaced
-1:000000000000 0:ff3b6d0fd310
       
     1 /*
       
     2 * Copyright (c) 2008 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:  Observes service provider settings changes
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MCCESPSOBSERVER_H
       
    21 #define MCCESPSOBSERVER_H
       
    22 
       
    23 /**
       
    24  *  Observes service provider settings changes
       
    25  *  
       
    26  *
       
    27  *  @lib cce.dll
       
    28  *  @since S60 v3.2
       
    29  */
       
    30 class MCCESPSObserver
       
    31     {
       
    32     
       
    33 public:
       
    34 
       
    35     /**
       
    36      * Service enabled
       
    37      *
       
    38      * @since S60 v3.2
       
    39      * @param Implementation id of call
       
    40      */
       
    41     virtual void ServiceEnabledL( TUid aImplementationUid ) = 0;
       
    42 
       
    43     /**
       
    44      * Service disabled
       
    45      *
       
    46      * @since S60 v3.2
       
    47      * @param Implementation id of call
       
    48      */
       
    49     virtual void ServiceDisabledL( TUid aImplementationUid ) = 0;
       
    50 
       
    51     
       
    52     };
       
    53 
       
    54 #endif      // MCCESPSOBSERVER_H
       
    55 
       
    56 // End of File
       
    57