remotemgmt_plat/adaptive_history_list_api/inc/ahleobserver.h
changeset 66 08c8318ec9cb
parent 64 910464db1b65
child 70 5237465237e3
equal deleted inserted replaced
64:910464db1b65 66:08c8318ec9cb
     1 /*
       
     2 * Copyright (c) 2002-2005 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 for AHLE engine observer class.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MAHLEOBSERVER_H
       
    19 #define MAHLEOBSERVER_H
       
    20 
       
    21 #include "e32def.h"
       
    22 
       
    23 /**
       
    24 *  Interface for AHLE engine observer class.
       
    25 *
       
    26 *  @lib AHLE2CLIENT.dll
       
    27 *  @since Series 60 3.1
       
    28 */
       
    29 class MAHLEObserver
       
    30     {
       
    31     public:
       
    32 
       
    33         /**
       
    34         * Observer method invoked when primary storage is changed.
       
    35         *
       
    36         * @param anError KErrNone if ok, otherwise an other error code.
       
    37         */
       
    38         virtual void AdaptiveListChanged(const TInt aError) = 0;
       
    39     };
       
    40 
       
    41 #endif      // MAHLEOBSERVER_H
       
    42 
       
    43 // End of File