locationcentre/lcserver/inc/lcserverengineobserver.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:  Observer class defintion to notify the Location Centre Server
       
    15 *                to any updations in the Location Centre Engine.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef M_LCSERVERENGINEOBSERVER_H
       
    21 #define M_LCSERVERENGINEOBSERVER_H
       
    22 
       
    23 // SYSTEM INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 /**
       
    27  *  @class MLcServerEngineObserver
       
    28  *  Observer class to notify updations to the Location Centre Server Engine.
       
    29  *
       
    30  *  This observer will provide the notification when there is an updation to
       
    31  *  the Location Centre Server Engine due to updations in the underlying
       
    32  *  Location Centre Registry. The Server classes is expected to communicate
       
    33  *  the information to all the Clients instances which have registered for
       
    34  *  such notifcations.
       
    35  *
       
    36  *  @since S60 v5.0
       
    37  */
       
    38 class MLcServerEngineObserver
       
    39     {
       
    40 public:
       
    41     /**
       
    42      * Notification to notify the updation of Location Centre Registry.
       
    43      *
       
    44      * @since S60 v5.0
       
    45      */
       
    46     virtual void LcRegistryUpdated() = 0;
       
    47     };
       
    48 
       
    49 #endif // M_LCSERVERENGINEOBSERVER_H