filemanager/Engine/inc/MFileManagerPropertyObserver.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:  Interface to handle async P&S property notifications
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CFILEMANAGERPROPERTYOBSERVER_H
       
    21 #define CFILEMANAGERPROPERTYOBSERVER_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 
       
    27 // CLASS DECLARATION
       
    28 /**
       
    29 *  Defines an interface for handling async P&S property changes.
       
    30 *
       
    31 *  @since 3.1
       
    32 */
       
    33 class MFileManagerPropertyObserver
       
    34     {
       
    35     public:
       
    36         /**
       
    37         * Informs about property changes
       
    38         * @since 3.1
       
    39         * @param aCategory Property category Uid
       
    40         * @param aKey Property key id
       
    41         */
       
    42         virtual void PropertyChangedL(
       
    43             const TUid& aCategory, const TUint aKey ) = 0;
       
    44     };
       
    45 
       
    46 #endif // CFILEMANAGERPROPERTYOBSERVER_H
       
    47 
       
    48 // End of File