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