filemanager/schbkup/inc/filemanagerschobserver.h
branchRCL_3
changeset 21 65326cf895ed
parent 0 6a9f87576119
equal deleted inserted replaced
20:491b3ed49290 21:65326cf895ed
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Observes subscribed notifications
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef M_FILEMANAGERSCHOBSERVER_H
       
    20 #define M_FILEMANAGERSCHOBSERVER_H
       
    21 
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 
       
    27 // CLASS DECLARATION
       
    28 /**
       
    29  *  This class observes subscribed notifications
       
    30  *
       
    31  *  @since S60 3.1
       
    32  */
       
    33 class MFileManagerSchObserver
       
    34     {
       
    35 
       
    36 public:
       
    37     /**
       
    38      * Handles notification
       
    39      *
       
    40      * @since S60 3.1
       
    41      * @param aCategory Subcribed category uid
       
    42      * @param aKey Subcribed key id
       
    43      * @param aTimeout Is triggered by timeout or actual event
       
    44      */
       
    45     virtual void NotifyKeyChangeOrTimeoutL(
       
    46         const TUid& aCategory,
       
    47         const TUint aKey,
       
    48         const TBool aTimeout ) = 0;
       
    49 
       
    50     };
       
    51 
       
    52 #endif // M_FILEMANAGERSCHOBSERVER_H
       
    53 
       
    54 // End of File