iptel_plat/vccpropertyhandler_api/inc/mvccpspropertylistenerobserver.h
changeset 0 a4daefaec16c
equal deleted inserted replaced
-1:000000000000 0:a4daefaec16c
       
     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 for VCC HO property watcher 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef M_VCCPSPROPERTYLISTENEROBSERVER_H
       
    21 #define M_VCCPSPROPERTYLISTENEROBSERVER_H
       
    22 
       
    23 /**
       
    24  *  Observer class for CVccUiPsPropertyListener
       
    25  *
       
    26  *  The class that implements this observer interfaces gets notified about 
       
    27  *  the VCC P&S property value changes.
       
    28  *
       
    29  *  @lib vccuipropertyhandler.lib
       
    30  *  @since S60 v3.2
       
    31  */
       
    32 class MVccPsPropertyListenerObserver 
       
    33     {
       
    34 
       
    35 public:
       
    36 
       
    37 	/**
       
    38 	 * Observer interface. Called when a P&S property value 
       
    39 	 * has been updated.
       
    40 	 * 
       
    41 	 * @param akeyId VCC key uid
       
    42 	 * @param aValue Current value of the VCC property.
       
    43 	 */	
       
    44  	virtual void VccPropertyChangedL( 
       
    45             const TUint aKeyId,
       
    46             const TInt aValue ) = 0;
       
    47     
       
    48     };
       
    49 
       
    50 
       
    51 
       
    52 #endif /*M_VCCPSPROPERTYLISTENEROBSERVER_H*/