commsconfig/cscengine/inc/mcscengprovisioningobserver.h
branchRCL_3
changeset 22 d38647835c2e
parent 0 a4daefaec16c
equal deleted inserted replaced
21:f742655b05bf 22:d38647835c2e
       
     1 /*
       
     2 * Copyright (c) 2007-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:  Observer interface for notifying when service plugin 
       
    15 *              : is configured
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef M_CSCENGPROVISIONINGOBSERVER_H
       
    22 #define M_CSCENGPROVISIONINGOBSERVER_H
       
    23 
       
    24 
       
    25 #include "cscengservicepluginhandler.h"
       
    26 
       
    27 /**
       
    28  *  MCSCEngProvisioningObserver class
       
    29  *
       
    30  *  Observer interface for notifying when service plug-in is configured
       
    31  *
       
    32  *  @lib
       
    33  *  @since S60 v3.2
       
    34  */
       
    35 class MCSCEngProvisioningObserver
       
    36     {
       
    37     public:
       
    38     
       
    39         /**
       
    40          * Should be called when provisioning of the plugin is completed.
       
    41          *
       
    42          * @since S60 v3.2
       
    43          * @param aResponse plug-in response type
       
    44          * @param aIndex index
       
    45          * @param aPluginUid plug-in uid
       
    46          */
       
    47         virtual void NotifyServicePluginResponse( 
       
    48             const CCSCEngServicePluginHandler::TServicePluginResponse& aResponse, 
       
    49             const TInt aIndex, 
       
    50             const TUid& aPluginUid ) = 0;         
       
    51     };
       
    52     
       
    53 #endif // M_CSCENGPROVISIONINGOBSERVER_H