cbs/cbsui/UiInc/MCbsUiSettingsObserver.h
branchRCL_3
changeset 20 987c9837762f
parent 0 ff3b6d0fd310
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
       
     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: 
       
    15 *    Observes settings monitor.
       
    16 *
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef CBS_UI_SETTINGS_OBSERVER_H
       
    22 #define CBS_UI_SETTINGS_OBSERVER_H
       
    23 
       
    24 
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 
       
    29 /**
       
    30 *  Observes settings monitor.
       
    31 *  
       
    32 */
       
    33 class MCbsUiSettingsObserver
       
    34     {
       
    35     public:
       
    36 
       
    37         /**
       
    38         * Settings monitor calls this function when settings has been
       
    39         * changed.
       
    40         *
       
    41         * @param aEvent What kind of event caused the settings change
       
    42         */
       
    43         virtual void SettingsChangedL( TCbsSettingsEvent aEvent ) = 0;
       
    44 
       
    45     };
       
    46 
       
    47 #endif      // CBS_UI_SETTINGS_OBSERVER_H
       
    48             
       
    49 // End of File
       
    50