locationsystemui/locationsysui/locsysuiview/inc/locsettingsuiobserver.h
branchRCL_3
changeset 44 2b4ea9893b66
parent 42 02ba3f1733c6
child 45 6b6920c56e2f
equal deleted inserted replaced
42:02ba3f1733c6 44:2b4ea9893b66
     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 SettingsUI interface class. Provides callback to notify
       
    15 *				 the termination of the Settings UI application
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef M_LOCSETTINGSUIOBSERVER_H_
       
    21 #define M_LOCSETTINGSUIOBSERVER_H_
       
    22 
       
    23 // System Include 
       
    24 #include <e32base.h>
       
    25 
       
    26 // Class Definition
       
    27 /**
       
    28  * Observer class that provides notification from the Settings UI.
       
    29  *
       
    30  * @lib locsysuiengine.lib
       
    31  * @since S60 v3.1
       
    32  */
       
    33 class MLocSettingsUiObserver
       
    34 	{
       
    35 	public:
       
    36         /**
       
    37          * Notifies the termination of the Settings UI
       
    38          *
       
    39          * @since S60 3.1
       
    40          * @param aErrorCode The termination reason. KErrNone for normal 
       
    41          *					 terminations. In case of error or pre-mature
       
    42          *					 aborting System wide Error codes.
       
    43          */
       
    44         virtual void SettingClosed( TInt aErrorCode )	= 0;
       
    45 	};
       
    46 
       
    47 #endif //M_LOCSETTINGSUIOBSERVER_H_
       
    48