locationcentre/lcserver/inc/lcregistryobserver.h
branchRCL_3
changeset 16 4721bd00d3da
parent 14 3a25f69541ff
child 21 e15b7f06eba6
equal deleted inserted replaced
14:3a25f69541ff 16:4721bd00d3da
     1 /*
       
     2 * Copyright (c) 2007 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:  Location Centre Server object.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef M_LCREGISTRYOBSERVER_H
       
    20 #define M_LCREGISTRYOBSERVER_H
       
    21 
       
    22 /**
       
    23  *  @file mlcregistryobserver.h
       
    24  *
       
    25  *  This file provides the definitions for the observer class which enables
       
    26  *  the lcregistry engine class to listen to dynamic behaviour of lcregistry.
       
    27  *
       
    28  *  @since S60 v5.0 
       
    29  */
       
    30 
       
    31 
       
    32 // SYSTEM INCLUDES
       
    33 #include <e32base.h>
       
    34 
       
    35 /**
       
    36  *  @class MLcRegistryObserver
       
    37  *  Observer class to notify to server engine wheather any dynamic changes happen to lcregistry
       
    38  *  due to applications/services installation/uninstallation/upgradation etc..
       
    39  *
       
    40  *  @since S60 v5.0
       
    41  */
       
    42 
       
    43 class MLcRegistryObserver
       
    44 	{
       
    45 public:
       
    46    /**
       
    47      * This function notify LC server engine
       
    48 	 * that registry is undergoing for dynamic updation
       
    49 	 *
       
    50      * @since S60 v5.0
       
    51      * @param None.
       
    52      */
       
    53 	virtual void RegistryUnderUpdation( ) = 0;		
       
    54 
       
    55    /**
       
    56      * This function notify LC server engine
       
    57      * that registry has completed it's dynamic updation process
       
    58      *
       
    59      * @since S60 v5.0
       
    60      * @param None.
       
    61      */
       
    62 	virtual void RegistryUpdated() = 0;
       
    63 	};
       
    64 
       
    65 #endif // M_LCREGISTRYOBSERVER_H