instantmessagesalert/inc/mimalertpropertynotificationobserver.h
branchRCL_3
changeset 22 3104fc151679
parent 21 2b7283837edb
child 23 9a48e301e94b
equal deleted inserted replaced
21:2b7283837edb 22:3104fc151679
     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:  Property notification handler observer interface
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MIMALERTPROPERTYNOTIFICATIONOBSERVER_H
       
    20 #define MIMALERTPROPERTYNOTIFICATIONOBSERVER_H
       
    21 
       
    22 #include <e32base.h>
       
    23 
       
    24 // CLASS DECLARATION
       
    25 
       
    26 /**
       
    27 *  Interface for receiving notifications from CIMAlertPropertyObserver when the
       
    28 *  value of the observed property changes
       
    29 *
       
    30 *  @lib
       
    31 *  @since 3.0
       
    32 */
       
    33 
       
    34 NONSHARABLE_CLASS(MIMAlertPropertyNotificationObserver)
       
    35     {
       
    36     public: // New functions
       
    37 
       
    38         /**
       
    39         * Called when the value of observed property has changed
       
    40         * @since 2.6
       
    41         */
       
    42         virtual void HandlePropertyNotificationEventL( TUid aCategory, TUint aKey ) = 0;
       
    43 
       
    44     };
       
    45 
       
    46 #endif      // MIMALERTPROPERTYNOTIFICATIONOBSERVER_H
       
    47 
       
    48 // End of File