gsprofilesrv_plat/settings_framework_api/inc/MGSSettingPSObserver.h
branchRCL_3
changeset 25 7e0eff37aedb
parent 0 8c5d936e5675
equal deleted inserted replaced
24:8ee96d21d9bf 25:7e0eff37aedb
       
     1 /*
       
     2 * Copyright (c) 2005 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 indicating publish and subscribe 
       
    15 *				         setting changes
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 #ifndef MGSSETTINGPSOBSERVER_H
       
    23 #define MGSSETTINGPSOBSERVER_H
       
    24 
       
    25 //  INCLUDES
       
    26 #include <e32std.h>
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  Observer interface for indicating setting changes
       
    32 *
       
    33 *  @lib GSTelPlugin
       
    34 *  @since 3.1
       
    35 */
       
    36 class MGSSettingPSObserver
       
    37     {
       
    38     public:  // New functions
       
    39 
       
    40         /**
       
    41         * Handler for setting changed event
       
    42         * @param aUid uid of setting        
       
    43         * @param aId id of setting
       
    44         * @param aStatus status of completed AO operation
       
    45         */
       
    46         virtual void HandleNotifyPSL( const TUid aUid, const TInt& aKey, 
       
    47                                       const TRequestStatus& aStatus ) = 0;
       
    48     };
       
    49 
       
    50 #endif // MGSSETTINGPSOBSERVER_H
       
    51 
       
    52 // End of File