locationsystemui/locationsysui/locsysuiengine/inc/locsysuiengineobserver.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-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 to the Location System UI Engine. 
       
    15 *                Notfies changes in the Location System UI related UI components
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef M_LOCSYSUIENGINEOBSERVER_H_
       
    21 #define M_LOCSYSUIENGINEOBSERVER_H_
       
    22 
       
    23 // System Include
       
    24 #include <e32base.h>
       
    25 
       
    26 // Class Declaration
       
    27 
       
    28 /**
       
    29  * Observer class to Location System UI Engine.
       
    30  * It provides notfication about the user termination of the Location UIs.
       
    31  *
       
    32  * @lib locsysuiengine.lib
       
    33  * @since S60 v3.2
       
    34  */
       
    35 class MLocSysUiEngineObserver
       
    36 	{
       
    37 	public:
       
    38 		/**
       
    39 		 * Notifies the termination of the Location UI.
       
    40 		 *
       
    41 		 * @since S60 v3.2
       
    42 		 * @param aErrorCode The termination reason. KErrNone for normal 
       
    43 		 *					 terminations. In case of error or pre-mature
       
    44 		 *					 aborting System wide Error codes.
       
    45 		 */
       
    46 		 virtual void LocationUIDismissed( TInt aErrorCode )			= 0;
       
    47 	};
       
    48 
       
    49 #endif // M_LOCSYSUIENGINEOBSERVER_H_
       
    50 
       
    51