locationcentre/lcserver/inc/lcregistrationupdatenotifier.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_LCREGISTRATIONUPDATENOTIFIER_H
       
    20 #define M_LCREGISTRATIONUPDATENOTIFIER_H
       
    21 
       
    22 /**
       
    23  *  @file lcregistrationupdatenotifier.h
       
    24  *
       
    25  *  This file provides the definitions for the observer class which enables
       
    26  *  the lcregistryhandler to listen to notifications from file server.
       
    27  *
       
    28  *  @since S60 v5.0 
       
    29  */
       
    30 
       
    31 
       
    32 // SYSTEM INCLUDES
       
    33 #include <e32base.h>
       
    34 
       
    35 /**
       
    36  *  @class MLcRegistryUpdateNotifier
       
    37  *  Observer class to notify to server wheather any changes happen to file server
       
    38  *  due to applications/services registered with Location Centre.
       
    39  *
       
    40  *  @since S60 v5.0
       
    41  */
       
    42 
       
    43 class MLcRegistryUpdateNotifier
       
    44 	{
       
    45 public:
       
    46    /**
       
    47      * This function notify lc registry
       
    48      * for any dunamic changes happen to the Location
       
    49      * centre's private directory.
       
    50      *
       
    51      * @since S60 v5.0
       
    52      * @param None.
       
    53      */
       
    54 	virtual void HandleDynamicRegistrationL() = 0;		
       
    55 	};
       
    56 
       
    57 #endif // M_LCREGISTRATIONUPDATENOTIFIER_H
       
    58