locationsystemui/locationsysui/locsuplsettingsui/inc/locsuplsettingsadapterobserver.h
changeset 0 667063e416a2
equal deleted inserted replaced
-1:000000000000 0:667063e416a2
       
     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 the SUPL Settings adapter
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MLOCSUPLSETTINGSADAPTEROBSERVER_H_
       
    20 #define MLOCSUPLSETTINGSADAPTEROBSERVER_H_
       
    21 
       
    22 // Class Declaration
       
    23 
       
    24 /**
       
    25  * Observer for the SUPL Settings Adapter. The observer provides callbacks for
       
    26  * any changes in the SUPL Settings UI
       
    27  *
       
    28  * @lib locsuplsettings.lib
       
    29  * @since S60 v3.1 
       
    30  */
       
    31 class MLocSUPLSettingsAdapterObserver
       
    32     {
       
    33     public:
       
    34         /** 
       
    35          * Enumeration for events from the SUPL Settings UI
       
    36          */
       
    37         enum TLocSUPLSettingsEvent
       
    38         	{
       
    39         	ESUPLSettingsIntialized,
       
    40         	ESUPLSettingsInitalizeError,
       
    41         	ESUPLSettingsChanged
       
    42         	};
       
    43         	
       
    44         /**
       
    45          * Called when a change has been detected in the SUPL Settings.
       
    46          *
       
    47          * @param aEvent Information about the SUPL Settings event.
       
    48          */
       
    49         virtual void HandleSuplSettingsChangeL( TLocSUPLSettingsEvent aEvent ) = 0;
       
    50 
       
    51     };
       
    52 
       
    53 #endif      // MLOCSUPLSETTINGSADAPTEROBSERVER_H_  
       
    54             
       
    55 // End of File