mmserv/tms/tmsserver/inc/tmscenrepobserver.h
branchRCL_3
changeset 10 3d8c721bf319
equal deleted inserted replaced
8:e35735ece90c 10:3d8c721bf319
       
     1 /*
       
     2  * Copyright (c) 2009 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:  Declarations for class TMSCenRepObserver
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef TMSCENREPOBSERVER_H
       
    19 #define TMSCENREPOBSERVER_H
       
    20 
       
    21 //  INCLUDES
       
    22 #include <e32std.h>
       
    23 
       
    24 namespace TMS {
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29  *  Observer interface for indicating P&S changes
       
    30  *
       
    31  */
       
    32 class TMSCenRepObserver
       
    33     {
       
    34 public:
       
    35     // New functions
       
    36 
       
    37     /**
       
    38      * Handler for changed event.
       
    39      * @param aUid uid of setting
       
    40      * @param aKey the changed key
       
    41      * @param aVal value
       
    42      */
       
    43     virtual void HandleNotifyCenRepL(const TUid aUid, const TUint32 aKey,
       
    44             TInt aVal) = 0;
       
    45     };
       
    46 
       
    47 }//namespace TMS
       
    48 
       
    49 #endif // TMSCENREPOBSERVER_H
       
    50 
       
    51 // End of File