phonesrv_plat/ss_settings_api/inc/MSSSettingsObserver.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
equal deleted inserted replaced
42:35488577e233 46:2fa1fa551b0b
     1 /*
       
     2 * Copyright (c) 2002 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:  Interface for getting observer events.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MSSSETTINGSOBSERVER_H
       
    20 #define MSSSETTINGSOBSERVER_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <rsssettings.h> 
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 /**
       
    28 * It's the observer interface for some phone related settings.
       
    29 * @lib sssettings.lib
       
    30 * @since 1.0
       
    31 */
       
    32 class MSSSettingsObserver
       
    33     {
       
    34     public: // New functions
       
    35         /*
       
    36         * Observer functoin 
       
    37         * @param aSetting Current setting
       
    38         * @param aNewValue New value for the setting
       
    39         */
       
    40         virtual void PhoneSettingChanged( 
       
    41             TSSSettingsSetting aSetting, 
       
    42             TInt aNewValue ) = 0;
       
    43     };
       
    44 
       
    45 #endif //MSSSETTINGSOBSERVER_H 
       
    46             
       
    47 // End of File