eventsui/eventseditor/inc/evtmgmtuilocsettinglauncherobserver.h
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     1 /*
       
     2 * Copyright (c) 2008 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:  It is observer class to handle launch of location 
       
    15 * settings.
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef EVTMGMTUILOCSETTINGLAUNCHEROBSERVER_H_
       
    20 #define EVTMGMTUILOCSETTINGLAUNCHEROBSERVER_H_
       
    21 
       
    22 #include <e32base.h>        // CBase
       
    23 
       
    24 class MEvtMgmtUiLocSettingsLauncherObserver
       
    25     {
       
    26 public:
       
    27     /**
       
    28      * It will be used to notify observer that lauching positioning settings
       
    29      * has been completed.
       
    30      * @param aErrorCode It will contain the status of the operation
       
    31      *                   KErrNone if successful otherwise error status code          
       
    32      */
       
    33     virtual void NotifyLocSettingLaucherChangeL( TInt aErrorCode )=0;
       
    34     };
       
    35 #endif //EVTMGMTUILOCSETTINGLAUNCHEROBSERVER_H_