mmappfw_plat/mpx_common_api/inc/mpxcenrepobserver.h
changeset 0 a2952bb97e68
equal deleted inserted replaced
-1:000000000000 0:a2952bb97e68
       
     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:  Observer for CenRep changes
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef M_MPXCENREPKEYOBSERVER_H
       
    21 #define M_MPXCENREPKEYOBSERVER_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 //  FORWARD DECLARATIONS
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  Observer interface for getting notifications about changes in settings 
       
    32 *  values.
       
    33 *
       
    34 *  @lib mpxcommon.lib
       
    35 */
       
    36 NONSHARABLE_CLASS(MMPXCenRepObserver)
       
    37     {
       
    38     public: // New functions
       
    39         /**
       
    40         * Handle a change in a setting value.
       
    41         *
       
    42         * @since S60 3.2.3
       
    43         * @param aRepositoryUid Central repository UID containing the setting
       
    44         * @param aSettingId Id of the setting
       
    45         */
       
    46         virtual void HandleSettingChange(const TUid& aRepositoryUid,
       
    47                                          TUint32 aSettingId) = 0;
       
    48     };
       
    49 
       
    50 
       
    51 #endif      // M_MPXCENREPKEYOBSERVER_H
       
    52 
       
    53 // End of File