emailservices/emailserver/cmailhandlerplugin/inc/PSSubscribeHandler.h
changeset 0 8466d47a6819
equal deleted inserted replaced
-1:000000000000 0:8466d47a6819
       
     1 /*
       
     2 * Copyright (c) 2004 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:
       
    15 *       Interface for handling P&S subscribe events
       
    16 */
       
    17 
       
    18 #ifndef __PSSUBSCRIBEHANDLER_H__
       
    19 #define __PSSUBSCRIBEHANDLER_H__
       
    20 
       
    21 /**
       
    22 *  Callback interface for CPSSubscriber.
       
    23 */
       
    24 class MPSSubscribeHandler
       
    25     {
       
    26     public:
       
    27 		/**
       
    28         * Through this method the Property subscribers notify of Property changes
       
    29         * @param aCategory The category of the property to be observed
       
    30 		* @param aKey The subkey of the property to be observed
       
    31 		*/
       
    32         virtual void HandlePropertyChangedL( const TUid& aCategory, TInt aKey ) = 0;
       
    33     };
       
    34 
       
    35 #endif //__PSSUBSCRIBEHANDLER_H__