clfwrapper/ClientSrc/MCLFItemProviderObserver.h
changeset 0 c53acadfccc6
equal deleted inserted replaced
-1:000000000000 0:c53acadfccc6
       
     1 /*
       
     2 * Copyright (c) 2002-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: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MCLFITEMPROVIDEROBSERVER_H
       
    21 #define MCLFITEMPROVIDEROBSERVER_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32std.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  Item provider observer.
       
    30 *
       
    31 *  @lib ContentListingFramework.lib
       
    32 *  @since Series 60 3.0
       
    33 */
       
    34 class MCLFItemProviderObserver
       
    35     {
       
    36     public:
       
    37 
       
    38         /**
       
    39         *  Item provider operation is completed.
       
    40         *  @param aError system-wide error code
       
    41         */
       
    42         virtual void OperationCompleteL( TInt aError ) = 0;
       
    43 
       
    44     protected:
       
    45 
       
    46         // Destructor
       
    47         virtual ~MCLFItemProviderObserver() {}
       
    48 
       
    49     };
       
    50 
       
    51 #endif      // MCLFITEMPROVIDEROBSERVER_H
       
    52 
       
    53 // End of File