uiservicetab/vimpststorage/inc/mvimpststorageactiveobserver.h
branchRCL_3
changeset 23 9a48e301e94b
parent 0 5e5d6b214f4f
equal deleted inserted replaced
22:3104fc151679 23:9a48e301e94b
       
     1 /*
       
     2 * Copyright (c) 2008 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:  This interface is used to observer refresh timer lauch
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __MVIMPSTSTORAGEREFRESHTIMEROBSERVER_H
       
    20 #define __MVIMPSTSTORAGEREFRESHTIMEROBSERVER_H
       
    21 
       
    22 #include <e32std.h>
       
    23 #include "tvimpstenums.h"
       
    24 
       
    25 class MVIMPSTStorageContactList;
       
    26 class MVIMPSTStorageContact;
       
    27 
       
    28 class MVIMPSTStorageActiveObserver
       
    29 	{
       
    30 	public:
       
    31 
       
    32 		/**
       
    33 		* This call is made when the waiting completes
       
    34 		* @param aError error code for waiting error, KErrNone if completes without error
       
    35 		*
       
    36 		*/
       
    37 		virtual void HandleDelayedNotificationL(TVIMPSTEnums::TVIMPSTStorgaeEventType aType,
       
    38 											   MVIMPSTStorageContactList *aList ,
       
    39 					                           MVIMPSTStorageContact* aContact,
       
    40 					                           TInt aContactIndex) = 0;
       
    41 
       
    42 		/**
       
    43 		* Virtual destructor
       
    44 		*/
       
    45 		virtual ~MVIMPSTStorageActiveObserver() {};
       
    46 	};
       
    47 
       
    48 #endif // __MVIMPSTSTORAGEREFRESHTIMEROBSERVER_H