coreapplicationuis/SysAp/Src/gan/msysapganpropertyobserver.h
branchRCL_3
changeset 82 4610cd70c542
parent 70 739cef680932
child 83 20e07ff6040b
equal deleted inserted replaced
70:739cef680932 82:4610cd70c542
     1 /*
       
     2 * Copyright (c) 2010 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:  MSysApGanPropertyObserver class definition. This is a callback
       
    15 *                interface from RProperty listener to client application.
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef MSYSAPGANPROPERTYOBSERVER_H_
       
    20 #define MSYSAPGANPROPERTYOBSERVER_H_
       
    21 
       
    22 class CSysApGanPropertyListener;
       
    23 
       
    24 NONSHARABLE_CLASS( MSysApGanPropertyObserver )
       
    25     {
       
    26 public:
       
    27     /**
       
    28      * Method is called when property value changes.
       
    29      * @param aPropertyListener Listener of the changed property.
       
    30      * @param aStatus Status of the event.
       
    31      */
       
    32     virtual void PropertyEvent( 
       
    33         CSysApGanPropertyListener& aPropertyListener, 
       
    34         TInt aStatus ) = 0;
       
    35     };
       
    36 
       
    37 #endif /* MSYSAPGANPROPERTYOBSERVER_H_ */